Add lots of utilties, initial builtins

This commit is contained in:
2022-10-27 16:51:21 -04:00
parent 07a486cd16
commit d81d8c5156
11 changed files with 603 additions and 10 deletions

View File

@@ -1,7 +1,11 @@
#!/bin/bash
TESTS=@tests@
TESTS="@tests@"
for test in $TESTS; do
echo ===========================
echo Test: $test
$test
ret=$?
if [ $? -ne 0 ] ; then
exit $ret
fi
done