From 07b6d0089fe9d7ebe18b486d56c3bf1af1b91cf8 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Tue, 19 Sep 2023 19:25:19 +0200 Subject: [PATCH] tests: Rename "runtestspp" to "runtests_cxx" --- expat/CMakeLists.txt | 6 +++--- expat/tests/.gitignore | 2 +- expat/tests/Makefile.am | 12 ++++++------ expat/tests/{runtestspp.cpp => runtests_cxx.cpp} | 0 4 files changed, 10 insertions(+), 10 deletions(-) rename expat/tests/{runtestspp.cpp => runtests_cxx.cpp} (100%) diff --git a/expat/CMakeLists.txt b/expat/CMakeLists.txt index 71dddacc..d79b9b16 100644 --- a/expat/CMakeLists.txt +++ b/expat/CMakeLists.txt @@ -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} ) diff --git a/expat/tests/.gitignore b/expat/tests/.gitignore index f221290e..e9ca9474 100644 --- a/expat/tests/.gitignore +++ b/expat/tests/.gitignore @@ -6,7 +6,7 @@ /xmltest.log Makefile runtests -runtestspp +runtests_cxx xmlts.zip XML-Test-Suite .libs diff --git a/expat/tests/Makefile.am b/expat/tests/Makefile.am index d6d7589a..a43eedaf 100644 --- a/expat/tests/Makefile.am +++ b/expat/tests/Makefile.am @@ -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 \ diff --git a/expat/tests/runtestspp.cpp b/expat/tests/runtests_cxx.cpp similarity index 100% rename from expat/tests/runtestspp.cpp rename to expat/tests/runtests_cxx.cpp