aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests/store_buffering/Makefile
blob: 3a3aee1492253799a238b87b42a883fe8a623155 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
CBMC_FLAGS = -I../.. -I../../src -I../../include -I../../empty_includes -32 -pointer-check -mm pso

all:
	for i in ./*.pass; do \
		echo $$i ; \
		CBMC_FLAGS="$(CBMC_FLAGS)" sh ../test_script.sh --should-pass $$i > $$i.out 2>&1 ; \
	done
	for i in ./*.fail; do \
		echo $$i ; \
		CBMC_FLAGS="$(CBMC_FLAGS)" sh ../test_script.sh --should-fail $$i > $$i.out 2>&1 ; \
	done