summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSwaroop Sridhar <swaroops@microsoft.com>2017-04-03 17:23:11 -0700
committerSwaroop Sridhar <Swaroop.Sridhar@microsoft.com>2017-04-04 18:32:46 -0700
commitf1dc118917525caee56629f5b60a260c1035a6aa (patch)
treedfd9e36fb1377b2ed992014455aec22d4d275f9e /tests
parent336fea27b0d54b7e996398d10010a8fc35e0e136 (diff)
downloadcoreclr-f1dc118917525caee56629f5b60a260c1035a6aa.tar.gz
coreclr-f1dc118917525caee56629f5b60a260c1035a6aa.tar.bz2
coreclr-f1dc118917525caee56629f5b60a260c1035a6aa.zip
Fix invocation of ILLink in linux testing
Fix the input to illink -a argument to not include the extension. The current command line caused silent wrong code gneration because of https://github.com/mono/linker/issues/56
Diffstat (limited to 'tests')
-rw-r--r--tests/src/CLRTest.Execute.Bash.targets2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/CLRTest.Execute.Bash.targets b/tests/src/CLRTest.Execute.Bash.targets
index 62cda2188f..f015cc710d 100644
--- a/tests/src/CLRTest.Execute.Bash.targets
+++ b/tests/src/CLRTest.Execute.Bash.targets
@@ -222,7 +222,7 @@ then
# Include all .exe files in this directory as entry points (some tests had multiple .exe file modules)
for bin in *.exe *.dll;
do
- Assemblies="$Assemblies -a $bin"
+ Assemblies="$Assemblies -a ${bin%.*}"
done
# Run dotnet-linker