diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 12d3064..8a441fa 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -172,5 +172,5 @@ boost_test(TYPE compile-fail SOURCES result_or_value_fail.cpp) boost_test(TYPE compile-fail SOURCES result_or_value_fail2.cpp) boost_test(TYPE run SOURCES result_or_fn0v.cpp) boost_test(TYPE run SOURCES result_or_fn0r.cpp) -boost_test(TYPE run SOURCES result_and_fn0v.cpp) -boost_test(TYPE run SOURCES result_and_fn0r.cpp) +boost_test(TYPE run SOURCES result_and_fn1v.cpp) +boost_test(TYPE run SOURCES result_and_fn1r.cpp) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index d594d7d..1bc1600 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -202,5 +202,5 @@ compile-fail result_or_value_fail.cpp : $(CPP11) ; compile-fail result_or_value_fail2.cpp : $(CPP11) ; run result_or_fn0v.cpp : : : $(CPP11) ; run result_or_fn0r.cpp : : : $(CPP11) ; -run result_and_fn0v.cpp : : : $(CPP11) ; -run result_and_fn0r.cpp : : : $(CPP11) ; +run result_and_fn1v.cpp : : : $(CPP11) ; +run result_and_fn1r.cpp : : : $(CPP11) ; diff --git a/test/result_and_fn0r.cpp b/test/result_and_fn1r.cpp similarity index 100% rename from test/result_and_fn0r.cpp rename to test/result_and_fn1r.cpp diff --git a/test/result_and_fn0v.cpp b/test/result_and_fn1v.cpp similarity index 100% rename from test/result_and_fn0v.cpp rename to test/result_and_fn1v.cpp