--- parser3/tests/Makefile 2003/03/03 13:33:00 1.1.2.2 +++ parser3/tests/Makefile 2003/03/06 08:48:59 1.1.2.6 @@ -1,9 +1,14 @@ ifdef COMSPEC - PARSER=./parser-cygwin.sh + PARSER_DIR=../src/targets/cgi/debug + PARSER_EXECUTABLE=$(PARSER_DIR)/parser3.exe + PARSER_CONFIG=$(PARSER_DIR)/auto.p else - PARSER=./parser-unix.sh + PARSER_DIR=../src/targets/cgi + PARSER_EXECUTABLE=$(PARSER_DIR)/parser3 + PARSER_CONFIG=$(PARSER_DIR)/auto.p endif +RUN_PARSER=./run_parser.sh DIFF=diff ECHO=echo RM=rm @@ -13,22 +18,24 @@ RM=rm OUTPUTS=$(patsubst %.html,outputs/%.processed,$(wildcard *.html)) RESULTS=$(patsubst %.html,results/%.processed,$(wildcard *.html)) -outputs/%.processed: %.html Makefile $(PARSER) - $(PARSER) $< > $@ +outputs/%.processed: %.html Makefile $(RUN_PARSER) $(PARSER_EXECUTABLE) $(PARSER_CONFIG) + $(RUN_PARSER) $(PARSER_EXECUTABLE) $< > $@ -.PHONY: FORCE all clean +.PHONY: FORCE all tests clean results/%.processed: outputs/%.processed FORCE - @$(DIFF) $< $@ + -$(DIFF) $< $@ -all: tests +all: + @$(ECHO) this folder contains Parser3 tests, you can run them by command: + @$(ECHO) make tests tests: outputs compares outputs: $(OUTPUTS) compares: $(RESULTS) - @$(ECHO) All tests passed OK + @$(ECHO) DONE clean: $(RM) -f outputs/*.processed