forked from teamnwah/openmw-tes3coop
14 lines
109 B
Bash
14 lines
109 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
function run()
|
||
|
{
|
||
|
cd "$1/tests/"
|
||
|
./test.sh
|
||
|
cd ../../
|
||
|
}
|
||
|
|
||
|
run stream
|
||
|
run vfs
|
||
|
run sound
|
||
|
run .
|