mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 15:35:23 +00:00
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 .
|