summaryrefslogtreecommitdiff
path: root/tests/src/CLRTest.GC.targets
diff options
context:
space:
mode:
authorSteve MacLean <sdmaclea@qti.qualcomm.com>2017-02-10 22:54:07 -0500
committerJan Kotas <jkotas@microsoft.com>2017-02-10 19:54:07 -0800
commit843a4cf61463adfea8b3a720fcfa586c2ec1187c (patch)
treecfbc1fb78beb27d0d0b29d8da748de37a6afd4f2 /tests/src/CLRTest.GC.targets
parent4ac52ffaac430c929b0e80cca84bf53fdf189b41 (diff)
downloadcoreclr-843a4cf61463adfea8b3a720fcfa586c2ec1187c.tar.gz
coreclr-843a4cf61463adfea8b3a720fcfa586c2ec1187c.tar.bz2
coreclr-843a4cf61463adfea8b3a720fcfa586c2ec1187c.zip
[Unix] Skipped tests should report exit code 2 (#9510)
Diffstat (limited to 'tests/src/CLRTest.GC.targets')
-rw-r--r--tests/src/CLRTest.GC.targets8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/src/CLRTest.GC.targets b/tests/src/CLRTest.GC.targets
index 90b9398a40..b102a06b2b 100644
--- a/tests/src/CLRTest.GC.targets
+++ b/tests/src/CLRTest.GC.targets
@@ -23,7 +23,7 @@ WARNING: When setting properties based on their current state (for example:
if [ ! -z $RunningLongGCTests ]
then
echo "Skipping execution because this is not a long-running GC test"
- exit 0
+ exit 2
fi
]]></GCLongGCTestBashScript>
<GCLongGCTestBashScript Condition="'$(IsLongRunningGCTest)' == 'true'"><![CDATA[
@@ -31,7 +31,7 @@ fi
if [ -z $RunningLongGCTests ]
then
echo "Skipping execution because long-running GC tests are not enabled"
- exit 0
+ exit 2
fi
]]></GCLongGCTestBashScript>
@@ -41,7 +41,7 @@ fi
if [ ! -z $RunningGCSimulatorTests ]
then
echo "Skipping execution because this is not a GCSimulator test"
- exit 0
+ exit 2
fi
]]></GCSimulatorTestBashScript>
<GCSimulatorTestBashScript Condition="'$(IsGCSimulatorTest)' == 'true'"><![CDATA[
@@ -49,7 +49,7 @@ fi
if [ -z $RunningGCSimulatorTests ]
then
echo "Skipping execution because GCSimulator tests are not enabled"
- exit 0
+ exit 2
fi
]]></GCSimulatorTestBashScript>