From 84c30e4fd70c22239a33bd80c62a968716c3872a Mon Sep 17 00:00:00 2001 From: Daniel James Date: Wed, 11 Nov 2009 14:03:44 +0000 Subject: [PATCH] Remove 'warnings-as-errors' flag that was breaking the build. [SVN r57564] --- hash/test/Jamfile.v2 | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/hash/test/Jamfile.v2 b/hash/test/Jamfile.v2 index e261cff..f4e1fff 100644 --- a/hash/test/Jamfile.v2 +++ b/hash/test/Jamfile.v2 @@ -14,9 +14,6 @@ project hash-tests darwin:"-pedantic -Wstrict-aliasing -fstrict-aliasing -Wextra -Wsign-promo -Wunused-parameter" gcc:_GLIBCXX_DEBUG darwin:_GLIBCXX_DEBUG - msvc:on - gcc:on - darwin:on ; test-suite functional/hash @@ -40,14 +37,13 @@ test-suite functional/hash [ run hash_deque_test.cpp ] [ run hash_set_test.cpp ] [ run hash_map_test.cpp ] - [ run hash_complex_test.cpp : : : off ] + [ run hash_complex_test.cpp ] [ run link_test.cpp link_test_2.cpp ] [ run link_ext_test.cpp link_no_ext_test.cpp ] [ run extensions_hpp_test.cpp ] [ run container_fwd_test.cpp ] - # Don't want compile-fail tests to fail because of warnings. - [ compile-fail hash_no_ext_fail_test.cpp : : : off ] - [ compile-fail namespace_fail_test.cpp : : : off ] + [ compile-fail hash_no_ext_fail_test.cpp ] + [ compile-fail namespace_fail_test.cpp ] [ run hash_no_ext_macro_1.cpp ] [ run hash_no_ext_macro_2.cpp ] ;