Commit f0f0ee04 authored by Leif Walsh's avatar Leif Walsh Committed by Yoni Fogel

fix syntax error in run.stress-tests.py when checking for icc


git-svn-id: file:///svn/toku/tokudb@44960 c7de825b-a66e-492c-adef-691d508d4ae1
parent 67257195
...@@ -420,7 +420,7 @@ def rebuild(tokudb, builddir, installdir, cc, tests): ...@@ -420,7 +420,7 @@ def rebuild(tokudb, builddir, installdir, cc, tests):
devnull.close() devnull.close()
if not compiler_works(cc): if not compiler_works(cc):
error('Cannot find working compiler named "%s". Try sourcing the icc env script or providing another compiler with --cc.', cc) error('Cannot find working compiler named "%s". Try sourcing the icc env script or providing another compiler with --cc.', cc)
sys.exit(r) sys.exit(2)
if cc == 'icc': if cc == 'icc':
iccstr = 'ON' iccstr = 'ON'
else: else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment