source: tests/scaling_tests/Makefile.am @ 1afd681

abac0-leakabac0-mei
Last change on this file since 1afd681 was 1afd681, checked in by Mei <mei@…>, 11 years ago

1) ready the 1.5 release..
2) tested out the new attribute features (nicknames), multiple GENI

attribute formats

3) polish up testing' build dir alittle bit more..

  • Property mode set to 100644
File size: 959 bytes
Line 
1#
2# scaling_tests
3#
4
5DIRECTORY=daisychain
6#haystack
7PLOT= daisychain/likes_python
8#haystack/fruit_python
9
10SUBDIRS=$(DIRECTORY)
11
12.PHONY : runcheck clean-local plot clean
13
14all:runcheck
15
16local-clean:
17clean:
18        @for i in $(DIRECTORY); do \
19          here=`pwd`; \
20          cd $$i; \
21          make clean; \
22          cd $$here; \
23        done;
24        rm -rf error result
25        rm -rf jpegs
26
27runcheck:
28        @echo 'running libabac SCALING testing...' | tee result
29        touch error
30        @for i in $(DIRECTORY); do \
31          here=`pwd`; \
32          printf "\n ==> RUN on %s\n" "$$i" >> result; \
33          cd $$i; \
34          make -s runcheck | tee -a $$here/result |grep BAD >> $$here/error; \
35          cd $$here; \
36        done;
37        @if test -f error ; \
38          then \
39            (if test `cat error | wc -l ` -eq 0 ; \
40              then echo "   PASSED"; \
41              else (echo "   ERROR!!!"; cat error;) \
42            fi) \
43          else echo "   PASSED"; \
44        fi
45
46plot:
47        make clean
48        mkdir jpegs
49        @for i in $(PLOT); do \
50          here=`pwd`; \
51          cd $$i; \
52          make -s plot; \
53          cd $$here; \
54        done;
55
Note: See TracBrowser for help on using the repository browser.