source: sources/test_regression/16122005/Makefile @ 55

Last change on this file since 55 was 55, checked in by meunier, 11 years ago

Tried to clean the test_regression directory:

  • Code formatting
  • Supressed warnings
  • Made comprehensible outputs
  • Factorized Makefiles

There's still a lot to do (many tests don't pass for either good or bad reasons)

File size: 327 bytes
Line 
1
2include ../env.mk
3RESULTS = results.txt
4ERASE = $(RESULTS)
5include ../Makefile.common
6
7RESULTS_REF = results_ref.txt
8
9test : $(EXE_SCASS)
10        @echo -ne "| Testing $$(basename $$(pwd)): " ;
11        @./$(EXE_SCASS) 2> /dev/null
12        @if diff $(RESULTS) $(RESULTS_REF) > /dev/null ; then \
13    echo "OK" ; \
14    else echo "KO" ; \
15    fi ;
16
17
18
Note: See TracBrowser for help on using the repository browser.