description of the test ... * src/ltltest/tostring.cc: ... here, where it is actually coded. * src/ltltest/lunabbrev.test, src/ltltest/tunabbrev.test, src/ltltest/nenoform.test, src/ltltest/tunenoform.test: Simplify with set -e.
24 lines
467 B
Bash
Executable file
24 lines
467 B
Bash
Executable file
#! /bin/sh
|
|
|
|
# Check for spot::ltl::tostring.
|
|
|
|
. ./defs || exit 1
|
|
|
|
set -e
|
|
|
|
./tostring 'a'
|
|
./tostring '1'
|
|
./tostring '0'
|
|
./tostring 'a => b'
|
|
./tostring 'G a '
|
|
./tostring 'a U b'
|
|
./tostring 'a & b'
|
|
./tostring 'a & b & c'
|
|
./tostring 'b & a & b'
|
|
./tostring 'b & a & a'
|
|
./tostring 'a & b & (c |(f U g)| e)'
|
|
./tostring 'b & a & a & (c | e |(f U g)| e | c) & b'
|
|
./tostring 'a <=> b'
|
|
./tostring 'a & b & (c |(f U g)| e)'
|
|
./tostring 'b & a & a & (c | e |(g U g)| e | c) & b'
|
|
|