[acceptance-tests] Stop symlinking System.Console.dll facade
authorAlexander Köplinger <alex.koeplinger@outlook.com>
Wed, 9 Mar 2016 17:08:09 +0000 (18:08 +0100)
committerAlexander Köplinger <alex.koeplinger@outlook.com>
Wed, 9 Mar 2016 17:34:05 +0000 (18:34 +0100)
It should no longer be required after 6e81edfa241bedbb3971ca1e7aece82f31de54c1.

acceptance-tests/coreclr.mk

index 2c2160e03160f1782694f636a0f2a32d836c10c4..dd141bcb194851ff1394268a8771b4b1d11aaa48 100644 (file)
@@ -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