Small docstring update for vars.Add
[scons.git] / timings / hundred / TimeSCons-run.py
blob3bee58aa633b2bbc28e579f7cc67b028587d0026
2 # __COPYRIGHT__
4 # Permission is hereby granted, free of charge, to any person obtaining
5 # a copy of this software and associated documentation files (the
6 # "Software"), to deal in the Software without restriction, including
7 # without limitation the rights to use, copy, modify, merge, publish,
8 # distribute, sublicense, and/or sell copies of the Software, and to
9 # permit persons to whom the Software is furnished to do so, subject to
10 # the following conditions:
12 # The above copyright notice and this permission notice shall be included
13 # in all copies or substantial portions of the Software.
15 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
16 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
17 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 """
25 This configuration is for timing how we handle the NxM interaction when
26 we build a lot of targets from a lot of source files.
28 We create a list of $TARGET_COUNT target files that will each be built by
29 copying a file from a corresponding list of $TARGET_COUNT source files.
30 The source files themselves are each built by a Python function action
31 that's the equivalent of "echo contents > $TARGET".
32 """
34 import TestSCons
36 # Full-build time of just under 10 seconds on ubuntu-timings slave,
37 # as determined by bin/calibrate.py on 9 December 2009:
39 # run 1: 3.124: TARGET_COUNT=50
40 # run 2: 11.936: TARGET_COUNT=160
41 # run 3: 9.175: TARGET_COUNT=134
42 # run 4: 10.489: TARGET_COUNT=146
43 # run 5: 9.798: TARGET_COUNT=139
44 # run 6: 9.695: TARGET_COUNT=139
45 # run 7: 9.670: TARGET_COUNT=139
47 test = TestSCons.TimeSCons(variables={'TARGET_COUNT':139})
49 for t in range(test.variables['TARGET_COUNT']):
50 with open('source_%04d' % t, 'w') as f:
51 f.write('contents\n')
53 test.main()
55 test.pass_test()