use testwrk for binaries, and generated reference data
This commit is contained in:
@@ -23,41 +23,42 @@ DIFF := $(WORKDIR)/bdiff
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
TESTS := $(patsubst %.c,%.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,%.o.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,%.os.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,%.osi.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,%.osir.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,%.oi.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,%.oir.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,%.or.prg,$(wildcard *.c))
|
||||
TESTS := $(patsubst %.c,$(WORKDIR)/%.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,$(WORKDIR)/%.o.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,$(WORKDIR)/%.os.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,$(WORKDIR)/%.osi.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,$(WORKDIR)/%.osir.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,$(WORKDIR)/%.oi.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,$(WORKDIR)/%.oir.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,$(WORKDIR)/%.or.prg,$(wildcard *.c))
|
||||
|
||||
all: $(TESTS)
|
||||
|
||||
# should compile, but then hangs in an endless loop
|
||||
endless%prg: endless.c
|
||||
$(WORKDIR)/endless%prg: endless.c
|
||||
$(CL65) $(CC65FLAGS) $< -o $@
|
||||
! $(SIM65) $(SIM65FLAGS) $@
|
||||
|
||||
# these need reference data that cant be generated by a host compiled program
|
||||
# in a useful way
|
||||
limits%prg: limits.c
|
||||
$(WORKDIR)/limits%prg: limits.c
|
||||
$(CL65) $(CC65FLAGS) $< -o $@
|
||||
$(SIM65) $(SIM65FLAGS) $@ > limits.out
|
||||
$(DIFF) limits.out limits.ref
|
||||
$(SIM65) $(SIM65FLAGS) $@ > $(WORKDIR)/limits.out
|
||||
$(DIFF) $(WORKDIR)/limits.out limits.ref
|
||||
|
||||
# the rest are tests that fail currently for one reason or another
|
||||
fields%prg: fields.c
|
||||
$(WORKDIR)/fields%prg: fields.c
|
||||
@echo "FIXME: " $@ "will currently fail"
|
||||
$(CL65) $(CC65FLAGS) $< -o $@
|
||||
-$(SIM65) $(SIM65FLAGS) $@
|
||||
sitest%prg: sitest.c
|
||||
$(WORKDIR)/sitest%prg: sitest.c
|
||||
@echo "FIXME: " $@ "will currently fail"
|
||||
-$(CL65) $(CC65FLAGS) $< -o $@
|
||||
-$(SIM65) $(SIM65FLAGS) $@
|
||||
|
||||
clean:
|
||||
@$(RM) *.o
|
||||
@$(RM) *.prg
|
||||
@$(RM) *.out
|
||||
@$(RM) $(TESTS)
|
||||
@$(RM) $(patsubst %.c,$(WORKDIR)/%.o,$(wildcard *.c))
|
||||
@$(RM) $(patsubst %.c,$(WORKDIR)/%.out,$(wildcard *.c))
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user