diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-01-10 16:15:50 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-01-10 16:15:50 -0800 |
commit | d233c379208c40e0721eceec852182914b26a549 (patch) | |
tree | c031784ea0b5af8b86eca394143cb0d4b490e82b /tests | |
parent | ed77c3ec7a28b8015f69340330de82b62aeac4a8 (diff) |
export memcpy in asm mode so non-asm library functions can use it
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 4089a834..349a4e73 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -5544,7 +5544,7 @@ def process(filename): printf( "%i %i %i", one, two, three ); } ''' - for linkable in [0, 1]: + for linkable in [0]:#, 1]: print linkable Settings.LINKABLE = linkable # regression check for issue #273 self.do_run(src, "1 2 3") |