From 25479216b39f68af6e4c486783e3dcdd73c0147e Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 30 Oct 2023 00:52:38 +0200 Subject: [PATCH] Fix test file names --- test/CMakeLists.txt | 4 ++-- test/Jamfile.v2 | 4 ++-- test/{result_and_fn0r.cpp => result_and_fn1r.cpp} | 0 test/{result_and_fn0v.cpp => result_and_fn1v.cpp} | 0 4 files changed, 4 insertions(+), 4 deletions(-) rename test/{result_and_fn0r.cpp => result_and_fn1r.cpp} (100%) rename test/{result_and_fn0v.cpp => result_and_fn1v.cpp} (100%) 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