mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-28 05:39:00 +08:00
13 lines
176 B
Bash
13 lines
176 B
Bash
|
#!/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
|
||
|
}
|