summaryrefslogtreecommitdiff
path: root/timings/hundred/TimeSCons-run.py
diff options
context:
space:
mode:
Diffstat (limited to 'timings/hundred/TimeSCons-run.py')
-rw-r--r--timings/hundred/TimeSCons-run.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/timings/hundred/TimeSCons-run.py b/timings/hundred/TimeSCons-run.py
index d21db8a5..915c1319 100644
--- a/timings/hundred/TimeSCons-run.py
+++ b/timings/hundred/TimeSCons-run.py
@@ -33,13 +33,11 @@ equivalent of "echo contents > $TARGET".
import TestSCons
-test = TestSCons.TimeSCons()
+test = TestSCons.TimeSCons(variables={'TARGET_COUNT':500})
-target_count = 500
-
-for t in xrange(target_count):
+for t in xrange(test.variables['TARGET_COUNT']):
open('source_%04d' % t, 'wb' ).write('contents\n')
-test.main(options='TARGET_COUNT=%s' % target_count)
+test.main()
test.pass_test()