scc

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

commit 018ca72d4dd84a58604adb1dd69882e3673edcdd
parent efa7acfe58b463d48d6e7dfbec38e69a2f921243
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri, 10 Jan 2025 20:47:25 +0100

tests/make: Replace scc-make by scc make

Diffstat:
Mtests/make/execute/0097-rule.sh | 2+-
Mtests/make/execute/0098-signal.sh | 2+-
Mtests/make/execute/0099-signal.sh | 2+-
Mtests/make/execute/0100-signal.sh | 2+-
Mtests/make/execute/0101-signal.sh | 2+-
Mtests/make/execute/0102-signal.sh | 2+-
Mtests/make/execute/0103-env.sh | 2+-
7 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/tests/make/execute/0097-rule.sh b/tests/make/execute/0097-rule.sh @@ -10,7 +10,7 @@ touch f1.c touch f1.o EOF -scc-make -f- <<'EOF' > $tmp2 2>&1 +scc make -f- <<'EOF' > $tmp2 2>&1 all: f1.o f1.o: f1.c diff --git a/tests/make/execute/0098-signal.sh b/tests/make/execute/0098-signal.sh @@ -14,7 +14,7 @@ rm -f file.txt trap 'cleanup 0' EXIT trap 'cleanup 1' INT TERM HUP -scc-make -f - <<'EOF' 2>&1 & +scc make -f - <<'EOF' 2>&1 & file.txt: @touch $@ @while : ; do sleep 1 ; done diff --git a/tests/make/execute/0099-signal.sh b/tests/make/execute/0099-signal.sh @@ -14,7 +14,7 @@ rm -f file.txt trap 'cleanup 0' EXIT trap 'cleanup 1' INT TERM HUP -scc-make -nf - test.txt <<'EOF' & +scc make -nf - test.txt <<'EOF' & test.txt: @+touch $@ +@while : ; do sleep 1 ; done diff --git a/tests/make/execute/0100-signal.sh b/tests/make/execute/0100-signal.sh @@ -14,7 +14,7 @@ rm -f file.txt trap 'cleanup 0' EXIT trap 'cleanup 1' INT TERM HUP -scc-make -f - test.txt <<'EOF' & +scc make -f - test.txt <<'EOF' & .PRECIOUS: test.txt test.txt: diff --git a/tests/make/execute/0101-signal.sh b/tests/make/execute/0101-signal.sh @@ -14,7 +14,7 @@ rm -f file.txt trap 'cleanup 0' EXIT trap 'cleanup 1' INT TERM HUP -scc-make -qf - test.txt <<'EOF' & +scc make -qf - test.txt <<'EOF' & test.txt: @+touch $@ +@while : ; do sleep 1 ; done diff --git a/tests/make/execute/0102-signal.sh b/tests/make/execute/0102-signal.sh @@ -14,7 +14,7 @@ rm -rf adir trap 'cleanup 0' EXIT trap 'cleanup 1' INT TERM HUP -scc-make -f - <<'EOF' 2>&1 & +scc make -f - <<'EOF' 2>&1 & adir: @mkdir $@ @while : ; do sleep 1 ; done diff --git a/tests/make/execute/0103-env.sh b/tests/make/execute/0103-env.sh @@ -11,7 +11,7 @@ cat > $tmp1 <<EOF Hello World EOF -scc-make -f - <<'EOF' > $tmp2 2>&1 +scc make -f - <<'EOF' > $tmp2 2>&1 FLAGS=Hello $(EFLAGS) all: @echo $(FLAGS)