tests: Rename "runtestspp" to "runtests_cxx"

This commit is contained in:
Sebastian Pipping 2023-09-19 19:25:19 +02:00
parent aacc14f4b4
commit 07b6d0089f
4 changed files with 10 additions and 10 deletions

View file

@ -608,7 +608,7 @@ if(EXPAT_BUILD_TESTS)
endif()
endfunction()
set(_EXPAT_TEST_TARGETS runtests runtestspp)
set(_EXPAT_TEST_TARGETS runtests runtests_cxx)
add_executable(runtests
tests/acc_tests.c
@ -628,7 +628,7 @@ if(EXPAT_BUILD_TESTS)
${_EXPAT_C_SOURCES}
)
add_executable(runtestspp
add_executable(runtests_cxx
tests/acc_tests_cxx.cpp
tests/alloc_tests_cxx.cpp
tests/basic_tests_cxx.cpp
@ -641,7 +641,7 @@ if(EXPAT_BUILD_TESTS)
tests/misc_tests_cxx.cpp
tests/ns_tests_cxx.cpp
tests/nsalloc_tests_cxx.cpp
tests/runtestspp.cpp
tests/runtests_cxx.cpp
tests/structdata_cxx.cpp
${_EXPAT_C_SOURCES}
)

View file

@ -6,7 +6,7 @@
/xmltest.log
Makefile
runtests
runtestspp
runtests_cxx
xmlts.zip
XML-Test-Suite
.libs

View file

@ -34,8 +34,8 @@ SUBDIRS = . benchmark
AM_CPPFLAGS = @AM_CPPFLAGS@ -I$(srcdir)/../lib
check_PROGRAMS = runtests runtestspp
TESTS = runtests runtestspp
check_PROGRAMS = runtests runtests_cxx
TESTS = runtests runtests_cxx
# To support MinGW and Non-MinGW at the same time:
LOG_DRIVER = $(srcdir)/../test-driver-wrapper.sh
@ -56,7 +56,7 @@ runtests_SOURCES = \
runtests.c \
structdata.c
runtestspp_SOURCES = \
runtests_cxx_SOURCES = \
acc_tests_cxx.cpp \
alloc_tests_cxx.cpp \
basic_tests_cxx.cpp \
@ -69,14 +69,14 @@ runtestspp_SOURCES = \
misc_tests_cxx.cpp \
nsalloc_tests_cxx.cpp \
ns_tests_cxx.cpp \
runtestspp.cpp \
runtests_cxx.cpp \
structdata_cxx.cpp
runtests_LDADD = ../lib/libexpatinternal.la
runtestspp_LDADD = ../lib/libexpatinternal.la
runtests_cxx_LDADD = ../lib/libexpatinternal.la
runtests_LDFLAGS = @AM_LDFLAGS@ @LIBM@
runtestspp_LDFLAGS = @AM_LDFLAGS@ @LIBM@
runtests_cxx_LDFLAGS = @AM_LDFLAGS@ @LIBM@
EXTRA_DIST = \
acc_tests.h \