Commit 99dd0a1c authored by Leif Walsh's avatar Leif Walsh Committed by Yoni Fogel

don't run test_stress_openclose.tdb on existing environments


git-svn-id: file:///svn/toku/tokudb@44990 c7de825b-a66e-492c-adef-691d508d4ae1
parent 9cec4ca1
...@@ -485,7 +485,9 @@ def main(opts): ...@@ -485,7 +485,9 @@ def main(opts):
if opts.run_non_upgrade: if opts.run_non_upgrade:
runners.append(TestRunner(execf=test, **kwargs)) runners.append(TestRunner(execf=test, **kwargs))
if opts.run_upgrade: # never run test_stress_openclose.tdb on existing
# environments, it doesn't want them
if opts.run_upgrade and test != 'test_stress_openclose.tdb'::
for version in opts.old_versions: for version in opts.old_versions:
for pristine_or_stressed in ['pristine', 'stressed']: for pristine_or_stressed in ['pristine', 'stressed']:
upgrade_kwargs = { upgrade_kwargs = {
......
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