From 6ad3e2fd12ee7ef4aa2d5570fdf264fb0e130dbd Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 1 Jun 2017 02:03:35 +0300 Subject: [PATCH] Rename tests --- test/Jamfile | 12 ++++++------ test/{get_by_index.cpp => variant_get_by_index.cpp} | 0 ...t_by_index_cx.cpp => variant_get_by_index_cx.cpp} | 0 test/{get_by_type.cpp => variant_get_by_type.cpp} | 0 ...get_by_type_cx.cpp => variant_get_by_type_cx.cpp} | 0 ...alternative.cpp => variant_holds_alternative.cpp} | 0 ...ative_cx.cpp => variant_holds_alternative_cx.cpp} | 0 7 files changed, 6 insertions(+), 6 deletions(-) rename test/{get_by_index.cpp => variant_get_by_index.cpp} (100%) rename test/{get_by_index_cx.cpp => variant_get_by_index_cx.cpp} (100%) rename test/{get_by_type.cpp => variant_get_by_type.cpp} (100%) rename test/{get_by_type_cx.cpp => variant_get_by_type_cx.cpp} (100%) rename test/{holds_alternative.cpp => variant_holds_alternative.cpp} (100%) rename test/{holds_alternative_cx.cpp => variant_holds_alternative_cx.cpp} (100%) diff --git a/test/Jamfile b/test/Jamfile index ab1fd9a..4a68bfe 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -13,12 +13,12 @@ REQ = ; #[ requires cxx11_variadic_templates cxx11_template_aliases cxx11_declty run variant_size.cpp : : : $(REQ) ; run variant_alternative.cpp : : : $(REQ) ; -run holds_alternative.cpp : : : $(REQ) ; -compile holds_alternative_cx.cpp : : : $(REQ) ; -run get_by_index.cpp : : : $(REQ) ; -compile get_by_index_cx.cpp : : : $(REQ) ; -run get_by_type.cpp : : : $(REQ) ; -compile get_by_type_cx.cpp : : : $(REQ) ; +run variant_holds_alternative.cpp : : : $(REQ) ; +compile variant_holds_alternative_cx.cpp : : : $(REQ) ; +run variant_get_by_index.cpp : : : $(REQ) ; +compile variant_get_by_index_cx.cpp : : : $(REQ) ; +run variant_get_by_type.cpp : : : $(REQ) ; +compile variant_get_by_type_cx.cpp : : : $(REQ) ; run variant_default_construct.cpp : : : $(REQ) ; compile variant_default_construct_cx.cpp : : : $(REQ) ; run variant_copy_construct.cpp : : : $(REQ) ; diff --git a/test/get_by_index.cpp b/test/variant_get_by_index.cpp similarity index 100% rename from test/get_by_index.cpp rename to test/variant_get_by_index.cpp diff --git a/test/get_by_index_cx.cpp b/test/variant_get_by_index_cx.cpp similarity index 100% rename from test/get_by_index_cx.cpp rename to test/variant_get_by_index_cx.cpp diff --git a/test/get_by_type.cpp b/test/variant_get_by_type.cpp similarity index 100% rename from test/get_by_type.cpp rename to test/variant_get_by_type.cpp diff --git a/test/get_by_type_cx.cpp b/test/variant_get_by_type_cx.cpp similarity index 100% rename from test/get_by_type_cx.cpp rename to test/variant_get_by_type_cx.cpp diff --git a/test/holds_alternative.cpp b/test/variant_holds_alternative.cpp similarity index 100% rename from test/holds_alternative.cpp rename to test/variant_holds_alternative.cpp diff --git a/test/holds_alternative_cx.cpp b/test/variant_holds_alternative_cx.cpp similarity index 100% rename from test/holds_alternative_cx.cpp rename to test/variant_holds_alternative_cx.cpp