diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-02-26 10:48:32 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-02-26 10:48:32 -0800 |
commit | ce0eabbbec5184380d3c98feac5b523be7c06b78 (patch) | |
tree | 4f51d0efc837337bd9111f6ea8939d8723379f33 /tests | |
parent | b649dec4101d0639d5df1b399c0fcfb63399fb57 (diff) |
do not use -std-compile-opts, which is not really meant to be used
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runner.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/runner.py b/tests/runner.py index 4aa15510..6964fab0 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -4013,9 +4013,9 @@ def process(filename): printf( "%i %i %i", one, two, three ); } ''' - #for linkable in [0]: - # Settings.LINKABLE = linkable # regression check for issue #273 - self.do_run(src, "1 2 3") + for linkable in [0, 1]: + Settings.LINKABLE = linkable # regression check for issue #273 + self.do_run(src, "1 2 3") def test_readdir(self): add_pre_run = ''' |