mgtest.sh 176 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
#!/bin/bash -e

cd $(dirname $0)
./mkmgtest.cmd $PWD/mgtest.vcxproj
cd ..
cp win/Debug/mgtest.exe .

./mgtest.exe || {
    #hack to flush the logs
    echo failed
    exit 1
}