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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2016-03-09 20:08:09 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2016-03-09 20:34:05 +0300
commite9ab609729517bbd6c4d9d39efcb07bf463e4372 (patch)
tree2fe08f5b83bf212d3f93481939e03b057366bd44 /acceptance-tests/coreclr.mk
parentb827d683c63a0470bb17b392d3640db64b54e67f (diff)
[acceptance-tests] Stop symlinking System.Console.dll facade
It should no longer be required after 6e81edfa241bedbb3971ca1e7aece82f31de54c1.
Diffstat (limited to 'acceptance-tests/coreclr.mk')
-rw-r--r--acceptance-tests/coreclr.mk4
1 files changed, 1 insertions, 3 deletions
diff --git a/acceptance-tests/coreclr.mk b/acceptance-tests/coreclr.mk
index 2c2160e0316..dd141bcb194 100644
--- a/acceptance-tests/coreclr.mk
+++ b/acceptance-tests/coreclr.mk
@@ -13,14 +13,12 @@ coreclr-compile-tests: coreclr-validate
$(MAKE) -j4 $(CORECLR_COREMANGLIB_TESTSI_CS)
$(MAKE) -j4 $(CORECLR_TESTSI_IL)
-# the CoreCLR IL tests use the System.Console facade, we need to copy it to the test directory
-# all the other tests rely on the coreclr-testlibrary.dll
+# the CoreCLR tests rely on the coreclr-testlibrary.dll, we need to copy it to the test directory
coreclr-runtest-basic: coreclr-validate test-runner.exe $(CORECLR_TESTSI_CS) $(CORECLR_TESTSI_IL)
@rm -f coreclr-testlist.txt
@$(call dumpvariabletofile, coreclr-testlist.txt, $(CORECLR_TESTSI_CS))
@$(call dumpvariabletofile, coreclr-testlist.txt, $(CORECLR_TESTSI_IL))
@for var in $(sort $(dir $(CORECLR_TESTSI_CS))); do ln -sf $(abspath coreclr-testlibrary.dll) "$$var"; done
- @for var in $(sort $(dir $(CORECLR_TESTSI_IL))); do ln -sf "$(abspath $(CLASS)/Facades/System.Console.dll)" "$$var"; done
$(RUNTIME) ./test-runner.exe -j a --testsuite-name "coreclr" --expected-exit-code 100 --input-file coreclr-testlist.txt
@rm -f coreclr-testlist.txt