source: examples/creddy_prover_tests/Makefile @ f89b991

mei_rt2
Last change on this file since f89b991 was 2e9455f, checked in by Mei <mei@…>, 11 years ago

1) added namespace
2) tweak ?This,
3) allowing linking role/oset as constraining conditions
4) adding access_tests regression testing that uses GENI's access policy
5) added couple multi contexts regression tests
6) add compression/uncompression calls to abac_encode_string/abac_decode_string
(libstrongwan only allows 512 char for attribute rule storage)
7) add attribute_now option to creddy that takes a whole char string for attribute
rule

  • Property mode set to 100644
File size: 1.1 KB
Line 
1
2DIRECTORY=access_rt2 acme_friend_rt1 acme_rockets_intersection_rt0 acme_rockets_rt0 alice_rt1 alumni2_rt1 alumni3_rt1 alumni_rt1 balltime_rt2 evaluator_rt1 experiment_create_rt0 file_read_rt2 fruits_rt2 leader_rt1 payraise_rt1 acme_multi_rt0
3
4.PHONY : setup runcheck clean
5runcheck: $(DIRECTORY)
6
7clean:
8        @for i in $(DIRECTORY); do \
9        here=`pwd`; \
10        cd $$i; \
11        rm -rf *.der *.pem *.cn *.sha *.log creds_dump; \
12        cd $$here; \
13        done 
14        @rm -rf allout.cn allout.sha
15
16setup: 
17        @for i in $(DIRECTORY); do \
18        here=`pwd`; \
19        cd $$i; \
20        ./README 1 >/dev/null 2>&1; \
21        cd $$here; \
22        done
23
24runcheck: 
25        @echo 'running libabac CREDDY/ABAC_PROVER_YAP testing...' 
26        @make setup
27        @for i in $(DIRECTORY); do \
28        here=`pwd`; \
29        cd $$i; \
30        printf "\n ==> RUN on %s\n" "$$i" >> ../allout.sha; \
31        ./run_query >> ../allout.sha 2>/dev/null; \
32        printf "\n ==> RUN on %s\n" "$$i" >> ../allout.cn; \
33        env ABAC_CN=1 ./run_query >> ../allout.cn 2>/dev/null; \
34        cd $$here; \
35        done
36        @if test -f allout.cn && test `diff -q allout.save allout.cn |wc -l ` -eq 0 ; \
37        then echo "   PASSED"; \
38        else echo "   ERROR:got changes!!!"; \
39        fi
40
Note: See TracBrowser for help on using the repository browser.