summaryrefslogtreecommitdiff
path: root/test/regression/Makefile
blob: 77917947e1765660ea728688a135f8e4383af348 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
include ../../Makefile.config

CCOMP=../../ccomp
CCOMPFLAGS=-stdlib ../../runtime -dparse -dc -dclight -dasm -fall

LIBS=$(LIBMATH)

# Can run and have reference output in Results

TESTS=attribs1 bitfields1 bitfields2 bitfields3 bitfields4 \
  bitfields5 bitfields6 bitfields7 bitfields8 \
  expr1 expr6 funptr2 initializers volatile1 volatile2 volatile3 \
  funct3 expr5 struct7 struct8 struct11 casts1 casts2 char1 \
  sizeof1 sizeof2 packedstruct1 packedstruct2 \
  instrsel bool compar switch int32 int64

# Other tests: should compile to .s without errors (but expect warnings)
EXTRAS=annot1 commaprec expr2 expr3 expr4 extern1 funct2 funptr1 init1 \
  init2 init3 init4 pragmas ptrs1 ptrs2 struct1 struct2 struct3 \
  struct4 struct5 struct6 struct9 struct10 types1 seqops

# Test known to fail
FAILURES=funct1 varargs1

all: $(TESTS:%=%.compcert) $(EXTRAS:%=%.s)

all_s: $(TESTS:%=%.s) $(EXTRAS:%=%.s)

%.compcert: %.c $(CCOMP)
	$(CCOMP) $(CCOMPFLAGS) -o $*.compcert $*.c $(LIBS)

%.s: %.c $(CCOMP)
	$(CCOMP) $(CCOMPFLAGS) -S $*.c

clean:
	rm -f *.compcert
	rm -f *.parsed.c *.compcert.c *.light.c *.s *.o *~ 

test:
	@for i in $(TESTS); do \
	   if ./$$i.compcert | cmp -s - Results/$$i; \
           then echo "$$i: passed"; \
           else echo "$$i: FAILED"; \
	   fi; \
         done

interp:
	@for i in $(TESTS); do \
           if $(CCOMP) -fall -interp -quiet $$i.c > _cinterp.log; then \
             if cmp -s _cinterp.log Results/$$i; \
             then echo "$$i: interpreter passed"; \
             else echo "$$i: interpreter FAILED"; \
             fi; \
           else \
             echo "$$i: interpreter undefined behavior"; \
           fi; \
         done

bench: