From 6284402a2d8ad6d9e539414ded5089676c1f7b64 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Wed, 29 Jun 2016 13:15:08 +0100 Subject: [PATCH 1/2] Move tests into subdirectory --- Jamfile.v2 => test/Jamfile.v2 | 0 class_concept_check_test.cpp => test/class_concept_check_test.cpp | 0 .../class_concept_fail_expected.cpp | 0 .../concept_check_fail_expected.cpp | 0 concept_check_test.cpp => test/concept_check_test.cpp | 0 fake_sort.hpp => test/fake_sort.hpp | 0 function_requires_fail.cpp => test/function_requires_fail.cpp | 0 old_concept_class_fail.cpp => test/old_concept_class_fail.cpp | 0 .../old_concept_function_fail.cpp | 0 old_concept_pass.cpp => test/old_concept_pass.cpp | 0 old_concepts.hpp => test/old_concepts.hpp | 0 stl_concept_check.cpp => test/stl_concept_check.cpp | 0 stl_concept_covering.cpp => test/stl_concept_covering.cpp | 0 usage_fail.cpp => test/usage_fail.cpp | 0 where.cpp => test/where.cpp | 0 where_fail.cpp => test/where_fail.cpp | 0 16 files changed, 0 insertions(+), 0 deletions(-) rename Jamfile.v2 => test/Jamfile.v2 (100%) rename class_concept_check_test.cpp => test/class_concept_check_test.cpp (100%) rename class_concept_fail_expected.cpp => test/class_concept_fail_expected.cpp (100%) rename concept_check_fail_expected.cpp => test/concept_check_fail_expected.cpp (100%) rename concept_check_test.cpp => test/concept_check_test.cpp (100%) rename fake_sort.hpp => test/fake_sort.hpp (100%) rename function_requires_fail.cpp => test/function_requires_fail.cpp (100%) rename old_concept_class_fail.cpp => test/old_concept_class_fail.cpp (100%) rename old_concept_function_fail.cpp => test/old_concept_function_fail.cpp (100%) rename old_concept_pass.cpp => test/old_concept_pass.cpp (100%) rename old_concepts.hpp => test/old_concepts.hpp (100%) rename stl_concept_check.cpp => test/stl_concept_check.cpp (100%) rename stl_concept_covering.cpp => test/stl_concept_covering.cpp (100%) rename usage_fail.cpp => test/usage_fail.cpp (100%) rename where.cpp => test/where.cpp (100%) rename where_fail.cpp => test/where_fail.cpp (100%) diff --git a/Jamfile.v2 b/test/Jamfile.v2 similarity index 100% rename from Jamfile.v2 rename to test/Jamfile.v2 diff --git a/class_concept_check_test.cpp b/test/class_concept_check_test.cpp similarity index 100% rename from class_concept_check_test.cpp rename to test/class_concept_check_test.cpp diff --git a/class_concept_fail_expected.cpp b/test/class_concept_fail_expected.cpp similarity index 100% rename from class_concept_fail_expected.cpp rename to test/class_concept_fail_expected.cpp diff --git a/concept_check_fail_expected.cpp b/test/concept_check_fail_expected.cpp similarity index 100% rename from concept_check_fail_expected.cpp rename to test/concept_check_fail_expected.cpp diff --git a/concept_check_test.cpp b/test/concept_check_test.cpp similarity index 100% rename from concept_check_test.cpp rename to test/concept_check_test.cpp diff --git a/fake_sort.hpp b/test/fake_sort.hpp similarity index 100% rename from fake_sort.hpp rename to test/fake_sort.hpp diff --git a/function_requires_fail.cpp b/test/function_requires_fail.cpp similarity index 100% rename from function_requires_fail.cpp rename to test/function_requires_fail.cpp diff --git a/old_concept_class_fail.cpp b/test/old_concept_class_fail.cpp similarity index 100% rename from old_concept_class_fail.cpp rename to test/old_concept_class_fail.cpp diff --git a/old_concept_function_fail.cpp b/test/old_concept_function_fail.cpp similarity index 100% rename from old_concept_function_fail.cpp rename to test/old_concept_function_fail.cpp diff --git a/old_concept_pass.cpp b/test/old_concept_pass.cpp similarity index 100% rename from old_concept_pass.cpp rename to test/old_concept_pass.cpp diff --git a/old_concepts.hpp b/test/old_concepts.hpp similarity index 100% rename from old_concepts.hpp rename to test/old_concepts.hpp diff --git a/stl_concept_check.cpp b/test/stl_concept_check.cpp similarity index 100% rename from stl_concept_check.cpp rename to test/stl_concept_check.cpp diff --git a/stl_concept_covering.cpp b/test/stl_concept_covering.cpp similarity index 100% rename from stl_concept_covering.cpp rename to test/stl_concept_covering.cpp diff --git a/usage_fail.cpp b/test/usage_fail.cpp similarity index 100% rename from usage_fail.cpp rename to test/usage_fail.cpp diff --git a/where.cpp b/test/where.cpp similarity index 100% rename from where.cpp rename to test/where.cpp diff --git a/where_fail.cpp b/test/where_fail.cpp similarity index 100% rename from where_fail.cpp rename to test/where_fail.cpp From ec560ba5b009ac6ffd14fb07d3a6d156693aaa65 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Wed, 29 Jun 2016 13:18:09 +0100 Subject: [PATCH 2/2] Dummy jamfile for the super project's build script. --- Jamfile | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Jamfile diff --git a/Jamfile b/Jamfile new file mode 100644 index 0000000..cf5eb61 --- /dev/null +++ b/Jamfile @@ -0,0 +1,3 @@ +# Empty Jamfile because the super project still expects one to appear here. +# Can be deleted once 'status/Jamfile.v2' has been updated in the super +# project.