14 lines
220 B
Bash
14 lines
220 B
Bash
|
#!/bin/sh
|
||
|
. tests/shlib/common.sh
|
||
|
|
||
|
enter_suite vterm
|
||
|
|
||
|
for t in "$ROOT"/tests/test_in_vterm/test_*.sh ; do
|
||
|
test_name="${t##*/test_}"
|
||
|
if ! "$t" ; then
|
||
|
fail "${test_name%.sh}" F "Failed running $t"
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
exit_suite
|