* src/tgbatest/scc.test: Redirect stdout into file `stdout'
instead of `out', to conform to other tests, and add a missing call to diff.
This commit is contained in:
parent
a40f362e99
commit
4de885afb1
2 changed files with 10 additions and 3 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
2009-06-02 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
||||||
|
|
||||||
|
* src/tgbatest/scc.test: Redirect stdout into file `stdout'
|
||||||
|
instead of `out', to conform to other tests, and add a missing
|
||||||
|
call to diff.
|
||||||
|
|
||||||
2009-06-02 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
2009-06-02 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
||||||
|
|
||||||
Introduce some experimental kripke classes to simplify writing
|
Introduce some experimental kripke classes to simplify writing
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
|
||||||
run 0 ./ltl2tgba -f -k '(a U c) U b & (b U c)' >out
|
run 0 ./ltl2tgba -f -k '(a U c) U b & (b U c)' >stdout
|
||||||
cat >expected <<EOF
|
cat >expected <<EOF
|
||||||
transitions: 15
|
transitions: 15
|
||||||
states: 6
|
states: 6
|
||||||
|
|
@ -34,10 +34,10 @@ dead SCCs: 0
|
||||||
accepting paths: 4
|
accepting paths: 4
|
||||||
dead paths: 0
|
dead paths: 0
|
||||||
EOF
|
EOF
|
||||||
diff out expected
|
diff stdout expected
|
||||||
|
|
||||||
|
|
||||||
run 0 ./ltl2tgba -f -k '(b U a) | (GFa & XG!a)' >out
|
run 0 ./ltl2tgba -f -k '(b U a) | (GFa & XG!a)' >stdout
|
||||||
cat >expected <<EOF
|
cat >expected <<EOF
|
||||||
transitions: 7
|
transitions: 7
|
||||||
states: 4
|
states: 4
|
||||||
|
|
@ -47,3 +47,4 @@ dead SCCs: 1
|
||||||
accepting paths: 2
|
accepting paths: 2
|
||||||
dead paths: 1
|
dead paths: 1
|
||||||
EOF
|
EOF
|
||||||
|
diff stdout expected
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue