From 5d502b93b7554b0b16d9ca70bb1a7a74ac012a89 Mon Sep 17 00:00:00 2001 From: Steven Knight Date: Wed, 28 Jan 2009 18:37:32 +0000 Subject: Relax the precompiled header performance criterion to a 15% improvement, and print useful information if we fail to meet that. --- test/MSVC/msvc.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/test/MSVC/msvc.py b/test/MSVC/msvc.py index 3d2f1f4..c2a2d0e 100644 --- a/test/MSVC/msvc.py +++ b/test/MSVC/msvc.py @@ -172,8 +172,13 @@ start = time.time() test.run(arguments='slow.obj', stderr=None) slow = time.time() - start -# using precompiled headers should be significantly faster -assert fast < slow*0.8 +# using precompiled headers should be faster +limit = slow*0.85 +if fast >= limit: + print "Using precompiled headers was not fast enough:" + print "slow.obj: %.3fs" % slow + print "fast.obj: %.3fs (expected less than %.3fs)" % (fast, limit) + test.fail_test() # Modifying resource.h should cause both the resource and precompiled header to be rebuilt: test.write('resource.h', ''' -- cgit v0.12