Update formal model from local copy
[urcu.git] / formal-model / urcu / Makefile
index 4488219e2469dc45403ce5359552e7c03d153b99..8af320d0de8354a2409150206231c0e348178c00 100644 (file)
 # Authors: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
 
 #CFLAGS=-DSAFETY
+#for multi-core verif, 15.5GB shared mem, use files if full
+#CFLAGS=-DHASH64 -DMEMLIM=15500 -DNCORE=2
+#CFLAGS=-DHASH64 -DCOLLAPSE -DMA=88 -DMEMLIM=15500 -DNCORE=8
+
+#liveness
+#CFLAGS=-DHASH64 -DCOLLAPSE -DMA=88
 CFLAGS=-DHASH64
 
 SPINFILE=urcu.spin
 
 default:
        make urcu_free | tee urcu_free.log
-       make urcu_free_nested | tee urcu_free_nested.log
+       #nested useless with signal test.
+       #make urcu_free_nested | tee urcu_free_nested.log
        make urcu_free_no_rmb | tee urcu_free_no_rmb.log
        make urcu_free_no_wmb | tee urcu_free_no_wmb.log
        make urcu_free_no_mb | tee urcu_free_no_mb.log
@@ -47,8 +54,8 @@ asserts: clean
        cat ${SPINFILE} >> .input.spin
        rm -f .input.spin.trail
        spin -a -X .input.spin
-       gcc -w ${CFLAGS} -DSAFETY -o pan pan.c
-       ./pan -v -c1 -X -m10000 -w20
+       gcc -O2 -w ${CFLAGS} -DSAFETY -o pan pan.c
+       ./pan -v -c1 -X -m10000000 -w20
        cp .input.spin $@.spin.input
        -cp .input.spin.trail $@.spin.input.trail
 
@@ -143,13 +150,13 @@ urcu_progress_writer_error_ltl:
 
 
 run_weak_fair: pan
-       ./pan -a -f -v -c1 -X -m10000 -w20
+       ./pan -a -f -v -c1 -X -m10000000 -w20
 
 run: pan
-       ./pan -a -v -c1 -X -m10000 -w20
+       ./pan -a -v -c1 -X -m10000000 -w20
 
 pan: pan.c
-       gcc -w ${CFLAGS} -o pan pan.c
+       gcc -O2 -w ${CFLAGS} -o pan pan.c
 
 pan.c: pan.ltl ${SPINFILE}
        cat .input.define > .input.spin
This page took 0.022725 seconds and 4 git commands to generate.