diff options
author | Vasilis Kalintiris <ehostunreach@gmail.com> | 2013-12-07 14:39:46 +0200 |
---|---|---|
committer | Vasilis Kalintiris <ehostunreach@gmail.com> | 2013-12-07 19:35:58 +0200 |
commit | 325cc2eed8e79e5d0e3556548209f0716e555e1c (patch) | |
tree | 48da3dd9376df849e4c4c8466d2e652b2692f1a9 | |
parent | d78d95d0c6bfcf0253e4e6387bc0f92095fd4c96 (diff) |
Use do_run_from_file() for test_memmove2
-rw-r--r-- | tests/core/test_memmove2.in | 24 | ||||
-rw-r--r-- | tests/core/test_memmove2.out | 1 | ||||
-rw-r--r-- | tests/test_core.py | 29 |
3 files changed, 29 insertions, 25 deletions
diff --git a/tests/core/test_memmove2.in b/tests/core/test_memmove2.in new file mode 100644 index 00000000..087f59b8 --- /dev/null +++ b/tests/core/test_memmove2.in @@ -0,0 +1,24 @@ + + #include <stdio.h> + #include <string.h> + #include <assert.h> + int main() { + int sum = 0; + char buffer[256]; + for (int i = 0; i < 10; i++) { + for (int j = 0; j < 10; j++) { + for (int k = 0; k < 35; k++) { + for (int t = 0; t < 256; t++) buffer[t] = t; + char *dest = buffer + i; + char *src = buffer + j; + if (dest == src) continue; + //printf("%d, %d, %d\n", i, j, k); + assert(memmove(dest, src, k) == dest); + for (int t = 0; t < 256; t++) sum += buffer[t]; + } + } + } + printf("final: %d.\n", sum); + return 1; + } +
\ No newline at end of file diff --git a/tests/core/test_memmove2.out b/tests/core/test_memmove2.out new file mode 100644 index 00000000..0e06b2e7 --- /dev/null +++ b/tests/core/test_memmove2.out @@ -0,0 +1 @@ +final: -403200.
\ No newline at end of file diff --git a/tests/test_core.py b/tests/test_core.py index 35c208bc..c8ae31a1 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -2564,31 +2564,10 @@ The current type of b is: 9 def test_memmove2(self): if Settings.USE_TYPED_ARRAYS != 2: return self.skip('need ta2') - src = r''' - #include <stdio.h> - #include <string.h> - #include <assert.h> - int main() { - int sum = 0; - char buffer[256]; - for (int i = 0; i < 10; i++) { - for (int j = 0; j < 10; j++) { - for (int k = 0; k < 35; k++) { - for (int t = 0; t < 256; t++) buffer[t] = t; - char *dest = buffer + i; - char *src = buffer + j; - if (dest == src) continue; - //printf("%d, %d, %d\n", i, j, k); - assert(memmove(dest, src, k) == dest); - for (int t = 0; t < 256; t++) sum += buffer[t]; - } - } - } - printf("final: %d.\n", sum); - return 1; - } - ''' - self.do_run(src, 'final: -403200.'); + test_path = path_from_root('tests', 'core', 'test_memmove2') + src, output = (test_path + s for s in ('.in', '.out')) + + self.do_run_from_file(src, output) def test_memmove3(self): src = ''' |