summaryrefslogtreecommitdiff
path: root/tests/src
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2019-06-11 10:54:52 +0200
committerGitHub <noreply@github.com>2019-06-11 10:54:52 +0200
commitf70085f37f3c49618087f852e44165954b3ed8d6 (patch)
tree75a54676341528eacde3a4ea98525428c8f66b35 /tests/src
parentd5906ecce405c8ff9476a1ea3d9a297bf5d9991c (diff)
downloadcoreclr-f70085f37f3c49618087f852e44165954b3ed8d6.tar.gz
coreclr-f70085f37f3c49618087f852e44165954b3ed8d6.tar.bz2
coreclr-f70085f37f3c49618087f852e44165954b3ed8d6.zip
Enable lab support for coreclr tests in unloadable context (#25064)
Diffstat (limited to 'tests/src')
-rw-r--r--tests/src/CLRTest.Execute.Bash.targets2
-rw-r--r--tests/src/CLRTest.Execute.Batch.targets2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/CLRTest.Execute.Bash.targets b/tests/src/CLRTest.Execute.Bash.targets
index 44dfcdb204..02ac8ccf53 100644
--- a/tests/src/CLRTest.Execute.Bash.targets
+++ b/tests/src/CLRTest.Execute.Bash.targets
@@ -81,7 +81,7 @@ fi
]]></BashCLRTestEnvironmentCompatibilityCheck>
<BashCLRTestEnvironmentCompatibilityCheck Condition="'$(UnloadabilityIncompatible)' == 'true'"><![CDATA[
$(BashCLRTestEnvironmentCompatibilityCheck)
-if [ ! -z "$__RunInUnloadableContext" ]
+if [ ! -z "$RunInUnloadableContext" ]
then
echo SKIPPING EXECUTION BECAUSE the test is incompatible with unloadability
exit $(GCBashScriptExitCode)
diff --git a/tests/src/CLRTest.Execute.Batch.targets b/tests/src/CLRTest.Execute.Batch.targets
index 19ab05be18..f14a73bfd7 100644
--- a/tests/src/CLRTest.Execute.Batch.targets
+++ b/tests/src/CLRTest.Execute.Batch.targets
@@ -78,7 +78,7 @@ IF NOT "%COMPlus_GCStress%"=="" (
]]></BatchCLRTestEnvironmentCompatibilityCheck>
<BatchCLRTestEnvironmentCompatibilityCheck Condition="'$(UnloadabilityIncompatible)' == 'true'"><![CDATA[
$(BatchCLRTestEnvironmentCompatibilityCheck)
-IF NOT "%__RunInUnloadableContext%"=="" (
+IF NOT "%RunInUnloadableContext%"=="" (
ECHO SKIPPING EXECUTION BECAUSE the test is incompatible with unloadability
popd
Exit /b 0