1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-07-05 05:44:31 +03:00
eda-tools/b2/test/sublast
Werner Almesberger 12b21f032c b2/test/: more substitution tests
Total number of tests is now 109.
2012-06-03 09:51:20 -03:00

104 lines
1.8 KiB
Bash
Executable File

#!/bin/bash
. ./Common
###############################################################################
tst "substitutions: expand \$ from regular var" -q X=foo <<EOF
!-s
X=?*? { Y=\$\$ }
EOF
expect <<EOF
Y=foo
EOF
#------------------------------------------------------------------------------
tst "substitutions: expand \$ from FN" -q F1=bar <<EOF
!-s
FN=?*? { Y=\$\$ }
EOF
expect <<EOF
Y=bar
EOF
#------------------------------------------------------------------------------
tst_fail "substitutions: expand \$ without match" <<EOF
!-s
X=\$\$
EOF
expect <<EOF
s:2: \$\$ without match
EOF
#------------------------------------------------------------------------------
tst "substitutions: assign to \$ from regular var" -q X=bar <<EOF
!-s
X=?*? { \$=foo }
EOF
expect <<EOF
X=foo
EOF
#------------------------------------------------------------------------------
tst "substitutions: assign to \$ from FN" -q F1=foo <<EOF
!-s
FN=?*? { \$=bar }
EOF
expect <<EOF
F1=bar
EOF
#------------------------------------------------------------------------------
tst_fail "substitutions: assign to \$ without match" <<EOF
!-s
\$=bar
EOF
expect <<EOF
s:2: \$ without match
EOF
#------------------------------------------------------------------------------
tst "substitutions: match \$ from regular var" -q X=bar <<EOF
!-s
X=?*? { \$=b(*) { Y=\$1 } }
EOF
expect <<EOF
Y=ar
EOF
#------------------------------------------------------------------------------
tst "substitutions: match \$ from FN" -q F1=foo <<EOF
!-s
FN=?*? { \$=(*)o { Y=\$1 } }
EOF
expect <<EOF
Y=fo
EOF
#------------------------------------------------------------------------------
tst_fail "substitutions: match \$ without match" <<EOF
!-s
\$=* { X=X }
EOF
expect <<EOF
s:2: \$ without match
EOF
###############################################################################