C++11 testing moved to a configure option
Use './configure --enable-cpp11-testing' to enable the C++11 test. Off by default for now.
This commit is contained in:
parent
738cc36aab
commit
de5e0c8655
3 changed files with 25 additions and 12 deletions
|
|
@ -94,10 +94,8 @@ CPP_TEST_BROKEN += \
|
|||
C_TEST_BROKEN += \
|
||||
tag_no_clash_with_variable
|
||||
|
||||
|
||||
# C++ test cases. (Can be run individually using: make testcase.cpptest)
|
||||
CPP_TEST_CASES += \
|
||||
$(CPP11_TEST_CASES) \
|
||||
abstract_access \
|
||||
abstract_inherit \
|
||||
abstract_inherit_ok \
|
||||
|
|
@ -541,6 +539,9 @@ ifndef SKIP_CPP_STD_CASES
|
|||
CPP_TEST_CASES += ${CPP_STD_TEST_CASES}
|
||||
endif
|
||||
|
||||
ifneq (,$(HAVE_CXX11_COMPILER))
|
||||
CPP_TEST_CASES += $(CPP11_TEST_CASES)
|
||||
endif
|
||||
|
||||
# C test cases. (Can be run individually using: make testcase.ctest)
|
||||
C_TEST_CASES += \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue