From 124786ad1b81b5387e41eb8b2f4f7077a89635ac Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Sat, 14 Oct 2017 12:57:42 -0400 Subject: [PATCH] Tests: Require newest compiler with thread test. --- test_regress/Makefile_obj | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test_regress/Makefile_obj b/test_regress/Makefile_obj index 40cf8e7be..441b5a9ea 100644 --- a/test_regress/Makefile_obj +++ b/test_regress/Makefile_obj @@ -38,9 +38,10 @@ CPPFLAGS += $(CPPFLAGS_ADD) ifeq ($(CFG_WITH_LONGTESTS),yes) ifeq ($(DRIVER_STD),newest) CPPFLAGS += $(CFG_CXXFLAGS_STD_NEWEST) - endif - ifeq ($(DRIVER_STD),oldest) + else ifeq ($(DRIVER_STD),oldest) CPPFLAGS += $(CFG_CXXFLAGS_STD_OLDEST) + else ifneq ($(findstring VL_THREADED,$(CPPFLAGS)),) + CPPFLAGS += $(CFG_CXXFLAGS_STD_NEWEST) endif endif