commit 55e9ee2e0788f88c83456ca24a6f9c2487a19e62 parent d189c38ed0559592cc9055103aabb697f94bb597 Author: Roberto E. Vargas Caballero <k0ga@shike2.net> Date: Fri, 20 Mar 2026 16:17:54 +0100 tests: Rename chktests to runtests This is a better name because they just run the tests. Diffstat:
20 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/tests/ar/execute/Makefile b/tests/ar/execute/Makefile @@ -3,7 +3,7 @@ BINDIR = ../../../bin/ all: master.a - PATH=$(BINDIR):$$PATH ./chktest.sh + PATH=$(BINDIR):$$PATH ./runtests.sh master.a: mkmaster.sh @./mkmaster.sh diff --git a/tests/ar/execute/chktest.sh b/tests/ar/execute/runtests.sh diff --git a/tests/as/execute/Makefile b/tests/as/execute/Makefile @@ -4,7 +4,7 @@ ROOT=../../../ BINDIR=$(ROOT)/bin all: - PATH=$(BINDIR):$$PATH ./chktest.sh + PATH=$(BINDIR):$$PATH ./runtests.sh tests: @$(MAKE) |\ diff --git a/tests/as/execute/chktest.sh b/tests/as/execute/runtests.sh diff --git a/tests/cc/error/Makefile b/tests/cc/error/Makefile @@ -5,7 +5,7 @@ SCCPREFIX=$(ROOT) CC=$(EXEC) $(ROOT)/bin/scc cc all: - @CC='$(CC)' ./chktest.sh scc-tests.lst + @CC='$(CC)' ./runtests.sh scc-tests.lst tests: @$(MAKE) |\ diff --git a/tests/cc/error/chktest.sh b/tests/cc/error/runtests.sh diff --git a/tests/cc/execute/Makefile b/tests/cc/execute/Makefile @@ -4,7 +4,7 @@ ROOT=../../.. CC=$(SHELL) $(ROOT)/bin/scc cc all: - @CC='$(CC)' ./chktest.sh scc-tests.lst + @CC='$(CC)' ./runtests.sh scc-tests.lst tests: @$(MAKE) |\ diff --git a/tests/cc/execute/chktest.sh b/tests/cc/execute/runtests.sh diff --git a/tests/libc/execute/Makefile b/tests/libc/execute/Makefile @@ -9,7 +9,7 @@ CFLAGS= $(CC) $(CFLAGS) -o $@ $< all: - CC=$(CC) ./chktest.sh libc-tests.lst + CC=$(CC) ./runtests.sh libc-tests.lst tests: @$(MAKE) |\ diff --git a/tests/libc/execute/chktest.sh b/tests/libc/execute/runtests.sh diff --git a/tests/make/error/Makefile b/tests/make/error/Makefile @@ -3,7 +3,7 @@ BINDIR = ../../../bin/ all: - PATH=$(BINDIR):$$PATH ./chktest.sh + PATH=$(BINDIR):$$PATH ./runtests.sh tests: @$(MAKE) |\ diff --git a/tests/make/error/chktest.sh b/tests/make/error/runtests.sh diff --git a/tests/make/execute/Makefile b/tests/make/execute/Makefile @@ -3,7 +3,7 @@ BINDIR = ../../../bin/ all: - PATH=$(BINDIR):$$PATH ./chktest.sh + PATH=$(BINDIR):$$PATH ./runtests.sh tests: @$(MAKE) |\ diff --git a/tests/make/execute/chktest.sh b/tests/make/execute/runtests.sh diff --git a/tests/nm/execute/Makefile b/tests/nm/execute/Makefile @@ -6,7 +6,7 @@ OUT = z80.out AS = z80-unknown-coff-as all: $(OUT) - PATH=$(BINDIR):$$PATH ./chktest.sh + PATH=$(BINDIR):$$PATH ./runtests.sh tests: @if command -v $(AS) >/dev/null;\ diff --git a/tests/nm/execute/chktest.sh b/tests/nm/execute/runtests.sh diff --git a/tests/size/execute/Makefile b/tests/size/execute/Makefile @@ -6,7 +6,7 @@ AS = z80-unknown-coff-as OUT = z80.out all: $(OUT) - PATH=$(BINDIR):$$PATH ./chktest.sh + PATH=$(BINDIR):$$PATH ./runtests.sh tests: @if command -v $(AS) >/dev/null;\ diff --git a/tests/size/execute/chktest.sh b/tests/size/execute/runtests.sh diff --git a/tests/strip/execute/Makefile b/tests/strip/execute/Makefile @@ -6,7 +6,7 @@ OUT = z80.out AS = z80-unknown-coff-as all: $(OUT) - @PATH=$(BINDIR):$$PATH ./chktest.sh + @PATH=$(BINDIR):$$PATH ./runtests.sh tests: @if command -v $(AS) >/dev/null;\ diff --git a/tests/strip/execute/chktest.sh b/tests/strip/execute/runtests.sh