Changeset 648

Show
Ignore:
Timestamp:
08/29/10 03:20:23 (1 year ago)
Author:
braddr
Message:

Add fully scripted tests.. the oddballs that just are easier to do as one off sh files

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/test/Makefile

    r641 r648  
    4343export ARGS=-inline -release -gc -O -unittest -fPIC 
    4444 
    45 runnable_tests=$(wildcard runnable/*.d) $(wildcard runnable/*.html) 
     45runnable_tests=$(wildcard runnable/*.d) $(wildcard runnable/*.html) $(wildcard runnable/*.sh) 
    4646runnable_test_results=$(addsuffix .out,$(addprefix $(RESULTS_DIR)/,$(runnable_tests))) 
    4747 
     
    5757$(RESULTS_DIR)/runnable/%.html.out: runnable/%.html $(RESULTS_DIR)/.created $(RESULTS_DIR)/combinations $(DMD) 
    5858    $(QUIET) ./do_test.sh $(<D) $* html 
     59 
     60$(RESULTS_DIR)/runnable/%.sh.out: runnable/%.sh $(RESULTS_DIR)/.created $(RESULTS_DIR)/combinations $(DMD) 
     61    $(QUIET) echo " ... $(<D)/$*.sh" 
     62    $(QUIET) ./$(<D)/$*.sh 
    5963 
    6064$(RESULTS_DIR)/compilable/%.d.out: compilable/%.d $(RESULTS_DIR)/.created $(RESULTS_DIR)/combinations $(DMD)