From 8a12de16a4fe1029ef2f441f23db8e3ee0c1c8b2 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Thu, 14 Jul 2011 09:47:51 +0000 Subject: [PATCH] Detail: Turn off warnings as errors for compile-fail tests. The test shouldn't succeed because the compile failed because of a warning. [SVN r73096] --- test/container_fwd/Jamfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/container_fwd/Jamfile b/test/container_fwd/Jamfile index 3581521..b39d447 100644 --- a/test/container_fwd/Jamfile +++ b/test/container_fwd/Jamfile @@ -20,7 +20,9 @@ run container_fwd_test.cpp : : : _STLP_DEBUG _GLIBCXX_DEBUG : container_fwd_debug ; -compile-fail correctly_disable_fail.cpp : : correctly_disable ; compile-fail correctly_disable_fail.cpp - : _STLP_DEBUG _GLIBCXX_DEBUG + : off + : correctly_disable ; +compile-fail correctly_disable_fail.cpp + : off _STLP_DEBUG _GLIBCXX_DEBUG : correctly_disable_debug ;