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>
25 make urcu_free | tee urcu_free.log
26 make urcu_free_no_rmb | tee urcu_free_no_rmb.log
27 make urcu_free_no_wmb | tee urcu_free_no_wmb.log
28 make urcu_free_no_mb | tee urcu_free_no_mb.log
29 make asserts | tee asserts.log
32 #show trail : spin -v -t -N pan.ltl input.spin
33 # after each individual make.
37 @echo
"Verification summary"
41 cat DEFINES
> .input.spin
42 cat
${SPINFILE} >> .input.spin
43 rm -f .input.spin.trail
44 spin
-a
-X .input.spin
45 gcc
-w
${CFLAGS} -DSAFETY
-o pan pan.c
46 .
/pan
-v
-c1
-X
-m10000
-w19
47 cp .input.spin
$@.spin.input
48 -cp .input.spin.trail
$@.spin.input.trail
50 urcu_free
: clean urcu_free_ltl run
51 cp .input.spin
$@.spin.input
52 -cp .input.spin.trail
$@.spin.input.trail
54 urcu_free_no_rmb
: clean urcu_free_ltl urcu_free_no_rmb_define run
55 cp .input.spin
$@.spin.input
56 -cp .input.spin.trail
$@.spin.input.trail
58 urcu_free_no_rmb_define
:
59 cp urcu_free_no_rmb.
define .input.
define
61 urcu_free_no_wmb
: clean urcu_free_ltl urcu_free_no_wmb_define run
62 cp .input.spin
$@.spin.input
63 -cp .input.spin.trail
$@.spin.input.trail
65 urcu_free_no_wmb_define
:
66 cp urcu_free_no_wmb.
define .input.
define
68 urcu_free_no_mb
: clean urcu_free_ltl urcu_free_no_mb_define run
69 cp .input.spin
$@.spin.input
70 -cp .input.spin.trail
$@.spin.input.trail
72 urcu_free_no_mb_define
:
73 cp urcu_free_no_mb.
define .input.
define
78 cat .input.
define >> pan.ltl
79 spin
-f
"!(`cat urcu_free.ltl | grep -v ^//`)" >> pan.ltl
82 .
/pan
-a
-v
-c1
-X
-m10000
-w19
85 gcc
-w
${CFLAGS} -o pan pan.c
87 pan.c
: pan.ltl
${SPINFILE}
88 cat DEFINES
> .input.spin
89 cat .input.
define >> .input.spin
90 cat
${SPINFILE} >> .input.spin
91 rm -f .input.spin.trail
92 spin
-a
-X
-N pan.ltl .input.spin
94 .PHONY
: clean default
distclean summary
96 rm -f pan
* trail.out .input.spin
* *.spin.trail .input.
define
98 rm -f
*.trail
*.input
*.log