From 30419ed5e00f4ee5a0a9bdda09575b2b6b33f344 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Fri, 15 May 2009 04:44:20 +0000 Subject: [PATCH] Add support for "known failures", which match the build name via a regular expression and are attached to test cases as a "known-failure" label. [SVN r53014] --- test/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 13439c9..93d8628 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -3,7 +3,8 @@ boost_additional_test_dependencies(optional BOOST_DEPENDS test tuple) boost_test_run(optional_test) boost_test_run(optional_test_tie) -boost_test_run(optional_test_ref) +boost_test_run(optional_test_ref + KNOWN_FAILURES "gcc-4.[0-3].[0-9]-.*") boost_test_run(optional_test_inplace) boost_test_run(optional_test_io) boost_test_compile_fail(optional_test_fail1)