diff options
Diffstat (limited to 'tests/runner.py')
-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 = ''' |