bsdcontrol.rb/bin/run-superuser-tests
2024-03-07 22:57:24 -03:00

12 lines
262 B
Bash
Executable file

#!/bin/sh
set -e
if [ $(id -u) = 0 ]; then
rake clean clobber compile
rm -rf tmp/
for file in test/superuser/*_test.rb; do
ruby -Ilib ${file} --no-use-color
done
else
echo "You must be the root user to run these tests."
exit 1
fi