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>2015-10-27 20:19:39 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2015-10-27 20:19:58 +0300
commit825033f5b0e3f38040455a707b86c9ba92e0ce23 (patch)
treecb1a1057bff1f62a19479050ca173572efd674af /acceptance-tests/Makefile.am
parent7de63f4d2ee6679aaa32fa14313c4735b584fba0 (diff)
[acceptance-tests] Append a suffix to the CoreCLR IL tests
Some of the tests have both a test.il and test.cs in the same folder, which means we would generate an .exe with the same name and overwriting one of them. This is avoided by appending a _il suffix to the IL tests.
Diffstat (limited to 'acceptance-tests/Makefile.am')
-rw-r--r--acceptance-tests/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/acceptance-tests/Makefile.am b/acceptance-tests/Makefile.am
index 8642c2b896b..eab1001f716 100644
--- a/acceptance-tests/Makefile.am
+++ b/acceptance-tests/Makefile.am
@@ -2412,10 +2412,10 @@ coreclr-list-missing-tests:
@echo $(CORECLR_CS_SRC_MISSING) | tr " " "\n"
CORECLR_TESTSI_CS=$(CORECLR_TEST_CS_SRC:.cs=.exe)
-CORECLR_TESTSI_IL=$(CORECLR_TEST_IL_SRC:.il=.exe)
+CORECLR_TESTSI_IL=$(CORECLR_TEST_IL_SRC:.il=_il.exe)
# the CoreCLR IL tests use the System.Console facade, we need to copy it to the test directory
-$(CORECLR_PATH)%.exe: $(CORECLR_PATH)%.il
+$(CORECLR_PATH)%_il.exe: $(CORECLR_PATH)%.il
$(ILASM) -out:$@ $<
[ -f "$(CLASS)/Facades/System.Console.dll" ] && cp -f "$(CLASS)/Facades/System.Console.dll" "$(dir $@)"