mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-16 06:28:38 +03:00
27dd121d14
git-subtree-dir: outside/re2 git-subtree-mainline: f94738bfd171ae447133e0964843addbb497894f git-subtree-split: 539b44fc4c5a49c3453b80e3af85d297f4cab4bf
22 lines
267 B
Bash
Executable File
22 lines
267 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
success=true
|
|
for i
|
|
do
|
|
printf "%-40s" $i
|
|
if sh -c "$i >$i.log 2>&1" 2>/dev/null
|
|
then
|
|
echo PASS
|
|
else
|
|
echo FAIL';' output in $i.log
|
|
success=false
|
|
fi
|
|
done
|
|
|
|
if $success; then
|
|
echo 'ALL TESTS PASSED.'
|
|
exit 0
|
|
fi
|
|
echo 'TESTS FAILED.'
|
|
exit 1
|