From a2da83b2605b9ab803b8379afab5e7a0c712e449 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 11 Feb 2014 19:38:07 +0200 Subject: [PATCH] Move test files into test/ --- test/Jamfile.v2 | 6 +++--- assert_test.cpp => test/assert_test.cpp | 0 current_function_test.cpp => test/current_function_test.cpp | 0 verify_test.cpp => test/verify_test.cpp | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename assert_test.cpp => test/assert_test.cpp (100%) rename current_function_test.cpp => test/current_function_test.cpp (100%) rename verify_test.cpp => test/verify_test.cpp (100%) 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