tests: rename all tests so that their names end in .test suffix

Due to automake limitations, some features work only for tests
that end in one of the suffixes listed in TEST_EXTENSIONS.

* tests/detach-running: Rename to detach-running.test.
* tests/detach-sleeping: Rename to detach-sleeping.test.
* tests/detach-stopped: Rename to detach-stopped.test.
* tests/net: Rename to net.test.
* tests/ptrace_setoptions: Rename to ptrace_setoptions.test.
* tests/qual_syscall: Rename to qual_syscall.test.
* tests/sigaction.sh: Rename to sigaction.test.
* tests/stat: Rename to stat.test.
* tests/strace-f: Rename to strace-f.test.
* tests/Makefile.am (TESTS): Update.
(LOG_COMPILER): Rename to TEST_LOG_COMPILER.
This commit is contained in:
Дмитрий Левин 2014-02-02 15:20:11 +00:00
parent aa4633c76e
commit 123d401508
10 changed files with 11 additions and 3 deletions

View File

@ -4,10 +4,18 @@ AM_CFLAGS = $(WARN_CFLAGS)
check_PROGRAMS = net-accept-connect set_ptracer_any sigaction
TESTS = ptrace_setoptions strace-f qual_syscall sigaction.sh stat net \
detach-sleeping detach-stopped detach-running
TESTS = \
ptrace_setoptions.test \
strace-f.test \
qual_syscall.test \
sigaction.test \
stat.test \
net.test \
detach-sleeping.test \
detach-stopped.test \
detach-running.test
LOG_COMPILER = $(srcdir)/run.sh
TEST_LOG_COMPILER = $(srcdir)/run.sh
EXTRA_DIST = init.sh run.sh sigaction.awk $(TESTS)