1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-07-01 03:22:01 +03:00
eda-tools/b2/test/subend
2012-06-03 21:22:16 -03:00

55 lines
890 B
Bash
Executable File

#!/bin/bash
. ./Common
###############################################################################
tst "substitutions: unconditional end" -ds -q <<EOF
!-s
end
EOF
expect <<EOF
end
EOF
#------------------------------------------------------------------------------
tst "substitutions: conditional end, taken" -ds -q doit=y <<EOF
!-s
doit = y { end }
foo = x
EOF
expect <<EOF
doit=RE {
end
}
foo=x
EOF
#------------------------------------------------------------------------------
tst "substitutions: conditional end, not taken" -q doit=n <<EOF
!-s
doit = y { end }
foo = x
EOF
expect <<EOF
foo=x
EOF
#------------------------------------------------------------------------------
tst_fail "substitutions: code after end" -q <<EOF
!-s
end
foo = x
EOF
expect <<EOF
s:2: unreachable code
EOF
###############################################################################