summaryrefslogtreecommitdiffstats
path: root/timings/hundred
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2009-12-10 03:42:30 (GMT)
committerSteven Knight <knight@baldmt.com>2009-12-10 03:42:30 (GMT)
commite8551494b473640e3310c8acf87bddaaf9804613 (patch)
tree752358a6720d64a6737668780d3d531a86d5ee1c /timings/hundred
parentadce42a8c1bd40f25af344cfce98ed26656cbea4 (diff)
downloadSCons-e8551494b473640e3310c8acf87bddaaf9804613.zip
SCons-e8551494b473640e3310c8acf87bddaaf9804613.tar.gz
SCons-e8551494b473640e3310c8acf87bddaaf9804613.tar.bz2
Infrastructure to support calibration runs of TimeSCons tests, which
only run a full build and report back the values of any variables affecting the configuration, and the elapsed time of the full build.
Diffstat (limited to 'timings/hundred')
-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 d21db8a..915c131 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()