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

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcos Henrich <marcos.henrich@xamarin.com>2016-08-05 16:44:51 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2016-10-29 15:09:31 +0300
commita803ab611b122290a631b87d17d57b4f8506df73 (patch)
tree92aeb2670125d13d5922322cae01b786da05e5dc /linker/Tests
parent2199326956218b513b328192d10447e6c9a3ff2a (diff)
[bcl] Replace nunit24 with nunit-lite
Get rid of TEST_HARNESS_VERBOSE and enable verbose logging by default nunit-lite doesn't have the "dot when test runs" progress indicator anymore, so we need to enable "verbose" output by default otherwise we don't get any progress until the test run is over. Also remove the TestResult_$(PROFILE).log and nunit-summary.xsl files, they're not needed anymore.
Diffstat (limited to 'linker/Tests')
-rw-r--r--linker/Tests/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/linker/Tests/Makefile b/linker/Tests/Makefile
index 8b87256f6..769a38ad5 100644
--- a/linker/Tests/Makefile
+++ b/linker/Tests/Makefile
@@ -12,7 +12,7 @@ Mono.Linker.Tests.dll.sources:
find Mono.Linker.Tests -name "*.cs" > Mono.Linker.Tests.dll.sources
Mono.Linker.Tests.dll: Mono.Cecil.dll monolinker.exe Mono.Linker.Tests.dll.sources
- $(MCS) /target:library /out:Mono.Linker.Tests.dll /r:nunit.framework.dll /r:Mono.Cecil.dll /r:monolinker.exe @Mono.Linker.Tests.dll.sources
+ $(MCS) /target:library /out:Mono.Linker.Tests.dll /r:nunitlite.dll /r:Mono.Cecil.dll /r:monolinker.exe @Mono.Linker.Tests.dll.sources
clean:
rm -rf Mono.Cecil.dll monolinker.exe Mono.Linker.Tests.dll.sources Mono.Linker.Tests.dll