diff options
author | Steven Knight <knight@baldmt.com> | 2010-01-02 14:44:28 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2010-01-02 14:44:28 (GMT) |
commit | f2bf9d68f4bf1815c9369ffdac3806640417f1df (patch) | |
tree | 4d2693ae00b5a2884ee1545af3232390f3c199ba /test/scons-time | |
parent | 49741b1a5d109c8bd131328441d322b2b040a525 (diff) | |
download | SCons-f2bf9d68f4bf1815c9369ffdac3806640417f1df.zip SCons-f2bf9d68f4bf1815c9369ffdac3806640417f1df.tar.gz SCons-f2bf9d68f4bf1815c9369ffdac3806640417f1df.tar.bz2 |
Fix time-sensitivity (< 0.002 second execution) in output format.
Diffstat (limited to 'test/scons-time')
-rw-r--r-- | test/scons-time/func/format-gnuplot.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/scons-time/func/format-gnuplot.py b/test/scons-time/func/format-gnuplot.py index 711d82b..2231936 100644 --- a/test/scons-time/func/format-gnuplot.py +++ b/test/scons-time/func/format-gnuplot.py @@ -56,16 +56,16 @@ plot '-' title "Startup" with lines lt 1, \\ '-' title "Full build" with lines lt 2, \\ '-' title "Up-to-date build" with lines lt 3 # Startup -0 0.00[012] -1 0.00[012] +0 \d.\d\d\d +1 \d.\d\d\d e # Full build -0 0.00[012] -1 0.00[012] +0 \d.\d\d\d +1 \d.\d\d\d e # Up-to-date build -0 0.00[012] -1 0.00[012] +0 \d.\d\d\d +1 \d.\d\d\d e """ |