scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

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:
Mtests/ar/execute/Makefile | 2+-
Rtests/ar/execute/chktest.sh -> tests/ar/execute/runtests.sh | 0
Mtests/as/execute/Makefile | 2+-
Rtests/as/execute/chktest.sh -> tests/as/execute/runtests.sh | 0
Mtests/cc/error/Makefile | 2+-
Rtests/cc/error/chktest.sh -> tests/cc/error/runtests.sh | 0
Mtests/cc/execute/Makefile | 2+-
Rtests/cc/execute/chktest.sh -> tests/cc/execute/runtests.sh | 0
Mtests/libc/execute/Makefile | 2+-
Rtests/libc/execute/chktest.sh -> tests/libc/execute/runtests.sh | 0
Mtests/make/error/Makefile | 2+-
Rtests/make/error/chktest.sh -> tests/make/error/runtests.sh | 0
Mtests/make/execute/Makefile | 2+-
Rtests/make/execute/chktest.sh -> tests/make/execute/runtests.sh | 0
Mtests/nm/execute/Makefile | 2+-
Rtests/nm/execute/chktest.sh -> tests/nm/execute/runtests.sh | 0
Mtests/size/execute/Makefile | 2+-
Rtests/size/execute/chktest.sh -> tests/size/execute/runtests.sh | 0
Mtests/strip/execute/Makefile | 2+-
Rtests/strip/execute/chktest.sh -> tests/strip/execute/runtests.sh | 0
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