forked from teamnwah/openmw-tes3coop
11 lines
104 B
Bash
Executable file
11 lines
104 B
Bash
Executable file
#!/bin/bash
|
|
|
|
function run()
|
|
{
|
|
echo "TESTING $1"
|
|
cd "$1/tests/"
|
|
./test.sh
|
|
cd ../../
|
|
}
|
|
|
|
run input
|