2025-06-17 14:49:32 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
dir=$(pwd)
|
|
|
|
|
|
|
|
|
|
{
|
2025-06-20 12:34:13 +02:00
|
|
|
cd test
|
|
|
|
|
echo -e "\n\r[!!] running package.testsuite.zip"
|
2025-06-18 04:41:13 +02:00
|
|
|
for test in *-*; do
|
2025-06-20 12:34:13 +02:00
|
|
|
echo -e "\r[⏵] test/$test"
|
2025-06-18 04:41:13 +02:00
|
|
|
./$test
|
2025-06-20 12:34:13 +02:00
|
|
|
done && echo -e "\r[OK] \o/" || echo -e "\r[ERROR] :/"
|
2025-06-18 04:41:13 +02:00
|
|
|
} 2>&1 | tee output.txt | tee /dev/tty | logger
|
2025-06-17 14:49:32 +02:00
|
|
|
|