mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 03:54:40 +00:00
12 lines
104 B
Bash
Executable File
12 lines
104 B
Bash
Executable File
#!/bin/bash
|
|
|
|
function run()
|
|
{
|
|
echo "TESTING $1"
|
|
cd "$1/tests/"
|
|
./test.sh
|
|
cd ../../
|
|
}
|
|
|
|
run input
|