summaryrefslogtreecommitdiff
path: root/t/exeext4.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/exeext4.sh')
-rw-r--r--t/exeext4.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/exeext4.sh b/t/exeext4.sh
index 7bc88c7e6..f057c690f 100644
--- a/t/exeext4.sh
+++ b/t/exeext4.sh
@@ -17,7 +17,7 @@
# Make sure $(EXEEXT) is appended to programs and to tests that are
# programs, but not to @substitutions@.
-# For gen-testsuite-part: ==> try-with-serial-tests <==
+am_serial_tests=yes
. test-init.sh
cat >> configure.ac << 'END'
@@ -37,18 +37,18 @@ if COND
BAZ = baz $(DEP)
endif
bin_PROGRAMS = $(programs) @programs@ prg3 $(BAR) $(BAZE)
+sbin_PROGRAMS = prg4 $(BAZ)
EXTRA_PROGRAMS = prg1 prg2 prg3
-TESTS = prg1 prg3 prg4 $(BAZ)
.PHONY: test-cond test-nocond
test-nocond:
is $(bin_PROGRAMS) == prg1.x prg2.x prg1.x prg2.x prg3.x
is $(EXTRA_PROGRAMS) == prg1.x prg2.x prg3.x
- is $(TESTS) == prg1.x prg3.x prg4
+ is $(sbin_PROGRAMS) == prg4.x
test-cond:
is $(bin_PROGRAMS) == prg1.x prg2.x prg1.x prg2.x prg3.x bar.x baz.x
is $(EXTRA_PROGRAMS) == prg1.x prg2.x prg3.x
- is $(TESTS) == prg1.x prg3.x prg4 baz.x bar.x
+ is $(sbin_PROGRAMS) == prg4.x baz.x bar.x
is $(BAR) $(BAZ) == bar baz bar
END