commit | 4b31ffa48856fb1f8293fd4682e603406a6d8e5f | [log] [tgz] |
---|---|---|
author | Josh Haberman <jhaberman@gmail.com> | Thu Dec 03 12:54:54 2015 -0800 |
committer | Josh Haberman <jhaberman@gmail.com> | Thu Dec 03 12:54:54 2015 -0800 |
tree | 335fb9fb2db2f99d6eb33441ff4e5bb070efd1dd | |
parent | a3faf080e355d2d89cb7a93a92f76ea5462c2ad0 [diff] [blame] |
Added Python failure lists, and fixes to make sure failure propagates.
diff --git a/python/setup.py b/python/setup.py index 05c16fc..18865e0 100755 --- a/python/setup.py +++ b/python/setup.py
@@ -147,7 +147,8 @@ class test_conformance(_build_py): target = 'test_python' def run(self): - os.system('cd ../conformance && make %s' % (test_conformance.target)) + cmd = 'cd ../conformance && make %s' % (test_conformance.target) + status = subprocess.check_call(cmd, shell=True) if __name__ == '__main__':