Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r79882 - trunk/tools/build/v2/test
From: jurko.gospodnetic_at_[hidden]
Date: 2012-08-05 15:39:21


Author: jurko
Date: 2012-08-05 15:39:21 EDT (Sun, 05 Aug 2012)
New Revision: 79882
URL: http://svn.boost.org/trac/boost/changeset/79882

Log:
Corrected the internal Boost Build path_features.py test to not fail in case the used compiler does not modify any bytes in one of the recompiled .obj files and only updates its timestamp, as msvc occasionally does.
Text files modified:
   trunk/tools/build/v2/test/path_features.py | 8 ++++----
   1 files changed, 4 insertions(+), 4 deletions(-)

Modified: trunk/tools/build/v2/test/path_features.py
==============================================================================
--- trunk/tools/build/v2/test/path_features.py (original)
+++ trunk/tools/build/v2/test/path_features.py 2012-08-05 15:39:21 EDT (Sun, 05 Aug 2012)
@@ -134,13 +134,13 @@
 
     t.touch(header)
     t.run_build_system(subdir="child_dir")
- t.expect_modification(expected_x1)
- t.expect_modification(expected_x2)
+ t.expect_touch(expected_x1)
+ t.expect_touch(expected_x2)
 
     t.touch(header)
     t.run_build_system(["..", "-d2"], subdir="child_dir/folder_to_include")
- t.expect_modification(expected_x1)
- t.expect_modification(expected_x2)
+ t.expect_touch(expected_x1)
+ t.expect_touch(expected_x2)
 
     t.cleanup()
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk