Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions regression/smv/modules/trace1.desc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
KNOWNBUG
trace1.smv
--numbered-trace
^\[.*\] AG \!a\.c\.d: REFUTED$
^Counterexample with 2 states:$
^b\.d@0 = FALSE$
^a\.c\.d@0 = FALSE$
^a\.c\.d@1 = TRUE$
^EXIT=10$
^SIGNAL=0$
--
^warning: ignoring
^a@0 = .*$
^b@0 = .*$
^a.c@0 = .*$
^a@1 = .*$
^b@1 = .*$
^a.c@1 = .*$
^b.d@1 = .*$
--
The trace contains entries for the module instances.
12 changes: 12 additions & 0 deletions regression/smv/modules/trace1.smv
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
MODULE main
VAR a : foo;
VAR b : moo;

SPEC AG !a.c.d

MODULE foo
VAR c : moo;

MODULE moo
VAR d : boolean;
INIT d = FALSE
Loading