shithub: regress

ref: 5f20f26e577847ba986edb7c0c2549976640c95c
dir: /cmd/cpp/cpp.rc/

View raw version
#!/bin/rc

for(f in *.test){
	cpp -P $f > $f.out
	if(! cmp $f.out $f.expected){
		>[2=1] echo fail: $f
		>[2=1] ape/diff $f.out $f.expected
		exit fail
	}
}
exit ''