From c0afe2d8730c4615963a5bf949ac97cb0137ca87 Mon Sep 17 00:00:00 2001 From: Jessica Hamilton Date: Wed, 6 May 2015 02:11:59 +1200 Subject: [PATCH] Tests: correct #error message in recursive_mutex/native_handle_pass --- .../mutual_exclusion/recursive_mutex/native_handle_pass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sync/mutual_exclusion/recursive_mutex/native_handle_pass.cpp b/test/sync/mutual_exclusion/recursive_mutex/native_handle_pass.cpp index b46619cd..b784f24e 100644 --- a/test/sync/mutual_exclusion/recursive_mutex/native_handle_pass.cpp +++ b/test/sync/mutual_exclusion/recursive_mutex/native_handle_pass.cpp @@ -29,7 +29,7 @@ int main() boost::recursive_mutex::native_handle_type h = m.native_handle(); BOOST_TEST(h); #else -#error "Test not applicable: BOOST_THREAD_DEFINES_CONDITION_VARIABLE_NATIVE_HANDLE not defined for this platform as not supported" +#error "Test not applicable: BOOST_THREAD_DEFINES_RECURSIVE_MUTEX_NATIVE_HANDLE not defined for this platform as not supported" #endif return boost::report_errors();