Boost logo

Boost-Commit :

From: troy_at_[hidden]
Date: 2008-07-03 18:50:56


Author: troy
Date: 2008-07-03 18:50:56 EDT (Thu, 03 Jul 2008)
New Revision: 47059
URL: http://svn.boost.org/trac/boost/changeset/47059

Log:
few more sanity tests, fix the classify method
Text files modified:
   branches/CMake/release/tools/build/CMake/classify.py.in | 2 +-
   branches/CMake/release/tools/build/CMake/sanity/one_clean_one_warn/test/CMakeLists.txt | 2 ++
   2 files changed, 3 insertions(+), 1 deletions(-)

Modified: branches/CMake/release/tools/build/CMake/classify.py.in
==============================================================================
--- branches/CMake/release/tools/build/CMake/classify.py.in (original)
+++ branches/CMake/release/tools/build/CMake/classify.py.in 2008-07-03 18:50:56 EDT (Thu, 03 Jul 2008)
@@ -24,7 +24,7 @@
         step['status'] = 'fail'
         return
 
- if step['returncode'] == '0' and step['expect_fail']:
+ if step['returncode'] == 0 and step['expect_fail']:
         step['status'] = 'unexpected_pass'
         return
 

Modified: branches/CMake/release/tools/build/CMake/sanity/one_clean_one_warn/test/CMakeLists.txt
==============================================================================
--- branches/CMake/release/tools/build/CMake/sanity/one_clean_one_warn/test/CMakeLists.txt (original)
+++ branches/CMake/release/tools/build/CMake/sanity/one_clean_one_warn/test/CMakeLists.txt 2008-07-03 18:50:56 EDT (Thu, 03 Jul 2008)
@@ -1,2 +1,4 @@
 boost_test_run(times_out)
+boost_test_compile(this_passes times_out.cpp)
+boost_test_compile_fail(this_unexpectedly_passes times_out.cpp)
 


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