scc

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

commit 84fddb03951b21ddf26359868261f9e3333802a2
parent f7e622f7d563d555919db35060871e2bb0747d9f
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sat, 20 Jan 2024 23:11:47 +0100

tests/make: Add 0078-macro test

Diffstat:
Atests/make/execute/0078-macro.sh | 12++++++++++++
1 file changed, 12 insertions(+), 0 deletions(-)

diff --git a/tests/make/execute/0078-macro.sh b/tests/make/execute/0078-macro.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +trap 'rm -f $tmp1 $tmp2' EXIT INT QUIT TERM HUP + +tmp1=tmp1.$$ +tmp2=tmp2.$$ + +echo SHELL=/bin/sh > $tmp2 +SHELL=foo scc-make -f- SHELL=/bin/sh <<'EOF' +all: + @echo $$SHELL +EOF