mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-28 07:32:00 -04:00
17 lines
150 B
Bash
Executable File
17 lines
150 B
Bash
Executable File
#!/bin/bash
|
|
|
|
function run()
|
|
{
|
|
echo "TESTING $1"
|
|
cd "$1/tests/"
|
|
./test.sh
|
|
cd ../../
|
|
}
|
|
|
|
run stream
|
|
run vfs
|
|
run sound
|
|
run input
|
|
run rend2d
|
|
run .
|