diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-07-21 10:38:00 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-07-21 10:38:00 -0700 |
commit | 5b49264399225763cf0ecad68e74259ba4b2c673 (patch) | |
tree | 11255eedb9a41307e3fd7f70196379251479c8c8 | |
parent | da282e937e07161b3da3be22921653e02920e650 (diff) |
clean up test code
-rwxr-xr-x | tests/runner.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index da98a9a5..3c2ce8f3 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -10872,7 +10872,12 @@ f.close() test('zlib', path_from_root('tests', 'zlib', 'example.c'), self.get_library('zlib', os.path.join('libz.a'), make_args=['libz.a']), open(path_from_root('tests', 'zlib', 'ref.txt'), 'r').read(), - { 1000: (380, 390), 2000: (395, 410), 5000: (800, 1100), 0: (1500, 1800) }, + { + 1000: (380, 390), + 2000: (395, 410), + 5000: (800, 1100), + 0: (1500, 1800) + }, args=['-I' + path_from_root('tests', 'zlib')], suffix='c') def test_symlink(self): |