Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Ungureanu <therzok@gmail.com>2017-05-09 05:02:20 +0300
committerMarius Ungureanu <therzok@gmail.com>2017-05-11 14:36:28 +0300
commite31ab83d39038cf10b14b0eedd8b38e53c6983ec (patch)
tree354bf733d666cc6f414234c634a0b79f030f22bf /main/wintest.sh
parent804779bfb0580a40e231a45238c26eea51a63958 (diff)
[Test] Print out labels when running tests on Windows.
Diffstat (limited to 'main/wintest.sh')
-rw-r--r--main/wintest.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/main/wintest.sh b/main/wintest.sh
index ff0ca258cc..3b3366bebf 100644
--- a/main/wintest.sh
+++ b/main/wintest.sh
@@ -1,15 +1,15 @@
if [ $# -lt 1 ]; then
- build/bin/mdtool run-md-tests build/tests/UnitTests.dll
- build/bin/mdtool run-md-tests build/tests/*.Tests.dll
+ build/bin/mdtool run-md-tests -labels build/tests/UnitTests.dll
+ build/bin/mdtool run-md-tests -labels build/tests/*.Tests.dll
if [ ! -f "external/nrefactory/bin/Debug/ICSharpCode.NRefactory.Tests.dll" ]; then
- build/bin/mdtool run-md-tests external/nrefactory/bin/Debug/ICSharpCode.NRefactory.Tests.dll
+ build/bin/mdtool run-md-tests -labels external/nrefactory/bin/Debug/ICSharpCode.NRefactory.Tests.dll
else
- build/bin/mdtool run-md-tests external/nrefactory/bin/Release/ICSharpCode.NRefactory.Tests.dll
+ build/bin/mdtool run-md-tests -labels external/nrefactory/bin/Release/ICSharpCode.NRefactory.Tests.dll
fi
if [ ! -f "external/fsharpbinding/MonoDevelop.FSharp.Tests/bin/Debug/MonoDevelop.FSharp.Tests.dll" ]; then
- build/bin/mdtool run-md-tests external/fsharpbinding/MonoDevelop.FSharp.Tests/bin/Debug/MonoDevelop.FSharp.Tests.dll
+ build/bin/mdtool run-md-tests -labels external/fsharpbinding/MonoDevelop.FSharp.Tests/bin/Debug/MonoDevelop.FSharp.Tests.dll
else
- build/bin/mdtool run-md-tests external/fsharpbinding/MonoDevelop.FSharp.Tests/bin/Release/MonoDevelop.FSharp.Tests.dll
+ build/bin/mdtool run-md-tests -labels external/fsharpbinding/MonoDevelop.FSharp.Tests/bin/Release/MonoDevelop.FSharp.Tests.dll
fi
else
for arg in $@; do
@@ -28,7 +28,7 @@ else
fi
if [ -f $arg ]; then
- (build/bin/mdtool run-md-tests $arg) || exit $?
+ (build/bin/mdtool run-md-tests -labels $arg) || exit $?
fi
done
fi