diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2020-12-07 02:46:31 +0000 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2020-12-08 20:04:17 +0000 |
commit | bb3befceee2b9849c236f712e6991a92224b5136 (patch) | |
tree | 31c505ff24207a112fcddf5063a81683bb1cbcfa /test/ext | |
parent | 5c544c8c3e084f7ccad041d168b6fff736b46cba (diff) |
tests: restore vapi C++ test under Centos-8
The Centos-7 compiler had problems with vapi_cpp_test.cpp.
The Centos-8 compiler does not. This change adds back the test.
==============================================================================
VAPI test
==============================================================================
run C VAPI tests 1.55 OK
run C++ VAPI tests 0.44 OK
==============================================================================
TEST RESULTS:
Scheduled tests: 2
Executed tests: 2
Passed tests: 2
==============================================================================
Type: test
Change-Id: Ic6a655ae99eb3ba0e73b7feef4436a0ca5fd92be
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'test/ext')
-rw-r--r-- | test/ext/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ext/Makefile b/test/ext/Makefile index 9c9791b1364..bc2061446f4 100644 --- a/test/ext/Makefile +++ b/test/ext/Makefile @@ -33,7 +33,7 @@ $(VAPI_CBIN).d: $(CSRC) $(VAPI_BINDIR)/fake.api.vapi.h $(CC) -o $@ $(CFLAGS) -MM -MT '$(VAPI_CBIN)' $(CSRC) > $@ -ifeq ($(filter rhel centos,$(OS_ID)),$(OS_ID)) +ifeq ($(filter rhel centos,$(OS_ID)),$(OS_ID) AND $(OS_VERSION_ID),7) VAPI_CPPBIN= else CPPSRC = $(TEST_EXT_DIR)/vapi_cpp_test.cpp |