diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 32893fe..6cb6e23 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -11,7 +11,7 @@ import testing ; test-suite "assert" : - [ run ../assert_test.cpp ] - [ run ../current_function_test.cpp : : : always_show_run_output ] - [ run ../verify_test.cpp ] + [ run assert_test.cpp ] + [ run current_function_test.cpp : : : always_show_run_output ] + [ run verify_test.cpp ] ; diff --git a/assert_test.cpp b/test/assert_test.cpp similarity index 100% rename from assert_test.cpp rename to test/assert_test.cpp diff --git a/current_function_test.cpp b/test/current_function_test.cpp similarity index 100% rename from current_function_test.cpp rename to test/current_function_test.cpp diff --git a/verify_test.cpp b/test/verify_test.cpp similarity index 100% rename from verify_test.cpp rename to test/verify_test.cpp