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.
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.
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.
15 # Copyright (C) Mathieu Desnoyers, 2009
17 # Authors: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
20 #CFLAGS=-DHASH64 -DREACH
23 #try pan -i to get the smallest trace.
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
34 #show trail : spin -v -t -N pan.ltl input.spin
35 # after each individual make.
39 @echo
"Verification summary"
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
48 .
/pan
-v
-c1
-X
-m10000
-w19
49 cp .input.spin
$@.spin.input
50 -cp .input.spin.trail
$@.spin.input.trail
52 read_order
: clean read_order_ltl run
53 cp .input.spin
$@.spin.input
54 -cp .input.spin.trail
$@.spin.input.trail
56 read_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
60 read_order_no_rmb_define
:
61 cp read_order_no_rmb.
define .input.
define
63 read_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
67 read_order_no_wmb_define
:
68 cp read_order_no_wmb.
define .input.
define
73 cat .input.
define >> pan.ltl
74 spin
-f
"!(`cat read_order.ltl | grep -v ^//`)" >> pan.ltl
77 .
/pan
-a
-v
-c1
-X
-m10000
-w19
80 gcc
-w
${CFLAGS} -o pan pan.c
82 pan.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
89 .PHONY
: clean default
distclean summary
91 rm -f pan
* trail.out .input.spin
* *.spin.trail .input.
define
93 rm -f
*.trail
*.input
*.log