Update formal model from local copy
[urcu.git] / formal-model / ooomem-double-update / Makefile
CommitLineData
82158610
MD
1# This program is free software; you can redistribute it and/or modify
2# it under the terms of the GNU General Public License as published by
3# the Free Software Foundation; either version 2 of the License, or
4# (at your option) any later version.
5#
6# This program is distributed in the hope that it will be useful,
7# but WITHOUT ANY WARRANTY; without even the implied warranty of
8# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9# GNU General Public License for more details.
10#
11# You should have received a copy of the GNU General Public License
12# along with this program; if not, write to the Free Software
13# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
14#
15# Copyright (C) Mathieu Desnoyers, 2009
16#
17# Authors: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
18
19#CFLAGS=-DSAFETY
5791dd3e
MD
20#CFLAGS=-DHASH64 -DREACH
21CFLAGS=-DHASH64
82158610
MD
22
23#try pan -i to get the smallest trace.
24
25SPINFILE=mem.spin
26
27default:
28 make read_order | tee read_order.log
29 make read_order_no_wmb | tee read_order_no_wmb.log
30 make read_order_no_rmb | tee read_order_no_rmb.log
31 make asserts | tee asserts.log
32 make summary
33
34#show trail : spin -v -t -N pan.ltl input.spin
35# after each individual make.
36
37summary:
38 @echo
39 @echo "Verification summary"
40 @grep error *.log
41
42asserts: clean
43 cat DEFINES > .input.spin
44 cat ${SPINFILE} >> .input.spin
45 rm -f .input.spin.trail
46 spin -a -X .input.spin
47 gcc -w ${CFLAGS} -DSAFETY -o pan pan.c
5791dd3e 48 ./pan -v -c1 -X -m10000 -w19
82158610
MD
49 cp .input.spin $@.spin.input
50 -cp .input.spin.trail $@.spin.input.trail
51
52read_order: clean read_order_ltl run
53 cp .input.spin $@.spin.input
54 -cp .input.spin.trail $@.spin.input.trail
55
56read_order_no_rmb: clean read_order_ltl read_order_no_rmb_define run
57 cp .input.spin $@.spin.input
58 -cp .input.spin.trail $@.spin.input.trail
59
60read_order_no_rmb_define:
61 cp read_order_no_rmb.define .input.define
62
63read_order_no_wmb: clean read_order_ltl read_order_no_wmb_define run
64 cp .input.spin $@.spin.input
65 -cp .input.spin.trail $@.spin.input.trail
66
67read_order_no_wmb_define:
68 cp read_order_no_wmb.define .input.define
69
70read_order_ltl:
71 touch .input.define
72 cat DEFINES > pan.ltl
73 cat .input.define >> pan.ltl
74 spin -f "!(`cat read_order.ltl | grep -v ^//`)" >> pan.ltl
75
76run: pan
5791dd3e 77 ./pan -a -v -c1 -X -m10000 -w19
82158610
MD
78
79pan: pan.c
80 gcc -w ${CFLAGS} -o pan pan.c
81
82pan.c: pan.ltl ${SPINFILE}
83 cat DEFINES > .input.spin
84 cat .input.define >> .input.spin
85 cat ${SPINFILE} >> .input.spin
86 rm -f .input.spin.trail
87 spin -a -X -N pan.ltl .input.spin
88
89.PHONY: clean default distclean summary
90clean:
91 rm -f pan* trail.out .input.spin* *.spin.trail .input.define
92distclean:
93 rm -f *.trail *.input *.log
This page took 0.025906 seconds and 4 git commands to generate.