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

wintest.sh « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 48d9c5b78a000d4ab45c7865f85c51b603490802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 external/nrefactory/bin/Debug/ICSharpCode.NRefactory.Tests.dll
else
	for arg in $@; do
		if [[ $arg == *ICSharpCode.NRefactory.Tests.dll ]]; then
			arg="external/nrefactory/bin/Debug/ICSharpCode.NRefactory.Tests.dll"
		elif [[ $arg != build/tests/* ]]; then
			arg="build/tests/$arg"
		fi

		if [ -f $arg ]; then
			(build/bin/mdtool run-md-tests $arg) || exit $?
		fi
	done
fi