-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun_tests.sh
executable file
·10 lines (9 loc) · 1.07 KB
/
run_tests.sh
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -e
xbuild /t:Build "/p:Configuration=Debug;Platform=AnyCPU" mongodbsc.Integration/mongodbsc.Integration.csproj
xbuild /t:Build "/p:Configuration=Debug;Platform=AnyCPU" pgdbsc.Integration/pgdbsc.Integration.csproj
xbuild /t:Build "/p:Configuration=Debug;Platform=AnyCPU" mydbsc.Integration/mydbsc.Integration.csproj
xbuild /t:Build "/p:Configuration=DebugMono;Platform=AnyCPU" oradbsc.Integration/oradbsc.Integration.csproj
xbuild /t:Build "/p:Configuration=Debug;Platform=AnyCPU" dbsc.Core.Tests/dbsc.Core.Tests.csproj
xbuild /t:Build "/p:Configuration=Debug;Platform=AnyCPU" dbsc.Core.Antlr.Tests/dbsc.Core.Antlr.Tests.csproj
nunit-console "dbsc.Core.Tests/bin/Debug_AnyCPU/dbsc.Core.Tests.dll" "dbsc.Core.Antlr.Tests/bin/Debug_AnyCPU/dbsc.Core.Antlr.Tests.dll" "mongodbsc.Integration/bin/Debug_AnyCPU/mongodbsc.Integration.dll" "pgdbsc.Integration/bin/Debug_AnyCPU/pgdbsc.Integration.dll" "mydbsc.Integration/bin/Debug_AnyCPU/mydbsc.Integration.dll" "oradbsc.Integration/bin/DebugMono_AnyCPU/oradbsc.Integration.dll" -nologo -noxml "-out=test_stdout.txt" "-err=test_stderr.txt"