Skip to content

Commit 5efa75d

Browse files
author
grischka
committed
update VERSION to 0.9.27
Also: - in tests: generate .expect files only if not yet present, because 1) some files were adjusted manually 2) switching git branche might change timestamps and cause unwanted update
1 parent aa0a45b commit 5efa75d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.26
1+
0.9.27

tests/pp/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ FILTER = 2>&1 | sed 's,$(SRC)/,,g'
3131
&& rm -f $*.output
3232

3333
# automatically generate .expect files with gcc:
34-
%.expect: %.c
35-
$(CC) -E -P $< >$*.expect 2>&1
34+
%.expect: # %.c
35+
gcc -E -P $< >$*.expect 2>&1
3636

37-
%.expect: %.S
38-
$(CC) -E -P $< >$*.expect 2>&1
37+
%.expect: # %.S
38+
gcc -E -P $< >$*.expect 2>&1
3939

4040
# tell make not to delete
4141
.PRECIOUS: %.expect

tests/tests2/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ all test: $(filter-out $(SKIP),$(TESTS))
6262
@diff -Nbu $(SRC)/$*.expect $*.output && rm -f $*.output $*.exe
6363

6464
# automatically generate .expect files with gcc:
65-
%.expect : %.c
65+
%.expect : # %.c
6666
(gcc -w $*.c -o a.exe && ./a.exe $(ARGS)) $(FILTER) >$*.expect 2>&1; rm -f a.exe
6767

6868
# tell make not to delete

0 commit comments

Comments
 (0)