From f07524546af1e340996d35f20fd1803e68756c02 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Tue, 19 Dec 2023 08:22:08 -0500 Subject: [PATCH] tests: Avoid use of AT_TESTED. This macro doesn't seem to handle systems with non-empty EXEEXT properly. All it does is prevent the testsuite from working. We don't need such gratuitous failures, just log the output of cdecl99 --version at the start of the test run and move on. --- testsuite.at | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/testsuite.at b/testsuite.at index 9533e66..58fae65 100644 --- a/testsuite.at +++ b/testsuite.at @@ -19,7 +19,13 @@ m4_include([common/snippet/test-tap.at]) AT_INIT AT_COLOR_TESTS -AT_TESTED([cdecl99]) +m4_divert_push([PREPARE_TESTS])dnl +{ + echo "% cdecl99 --version" + cdecl99 --version &AS_MESSAGE_LOG_FD 2>&1 +m4_divert_pop([PREPARE_TESTS]) AT_ARG_OPTION_ARG([random-seed], [AS_HELP_STRING([--random-seed=ARG], -- 2.43.2