$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r73096 - trunk/libs/detail/test/container_fwd
From: dnljms_at_[hidden]
Date: 2011-07-14 05:47:52
Author: danieljames
Date: 2011-07-14 05:47:51 EDT (Thu, 14 Jul 2011)
New Revision: 73096
URL: http://svn.boost.org/trac/boost/changeset/73096
Log:
Detail: Turn off warnings as errors for compile-fail tests.
The test shouldn't succeed because the compile failed because of a warning.
Text files modified: 
   trunk/libs/detail/test/container_fwd/Jamfile |     6 ++++--                                  
   1 files changed, 4 insertions(+), 2 deletions(-)
Modified: trunk/libs/detail/test/container_fwd/Jamfile
==============================================================================
--- trunk/libs/detail/test/container_fwd/Jamfile	(original)
+++ trunk/libs/detail/test/container_fwd/Jamfile	2011-07-14 05:47:51 EDT (Thu, 14 Jul 2011)
@@ -20,7 +20,9 @@
     : <define>_STLP_DEBUG <define>_GLIBCXX_DEBUG
     : container_fwd_debug ;
 
-compile-fail correctly_disable_fail.cpp : : correctly_disable ;
 compile-fail correctly_disable_fail.cpp
-    : <define>_STLP_DEBUG <define>_GLIBCXX_DEBUG
+    : <warnings-as-errors>off
+    : correctly_disable ;
+compile-fail correctly_disable_fail.cpp
+    : <warnings-as-errors>off <define>_STLP_DEBUG <define>_GLIBCXX_DEBUG
     : correctly_disable_debug ;