summaryrefslogtreecommitdiff
path: root/tests/runtest.proj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/runtest.proj')
-rw-r--r--tests/runtest.proj4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runtest.proj b/tests/runtest.proj
index 0e948d9b73..b6b512e9fb 100644
--- a/tests/runtest.proj
+++ b/tests/runtest.proj
@@ -295,7 +295,7 @@ namespace $([System.String]::Copy($(Category)).Replace(".","_").Replace("\","").
{
Assert.True(false, "Test Infrastructure Failure: " + infraEx.Message)%3B
}
- else if (ret != CoreclrTestWrapperLib.EXIT_SUCCESS_CODE)
+ else
{
List<string> allOutput = new List<string>()%3B
@@ -333,7 +333,7 @@ namespace $([System.String]::Copy($(Category)).Replace(".","_").Replace("\","").
output.WriteLine(line)%3B
}
- Assert.True(false, string.Join(Environment.NewLine, allOutput))%3B
+ Assert.True(ret == CoreclrTestWrapperLib.EXIT_SUCCESS_CODE, string.Join(Environment.NewLine, allOutput))%3B
}
}
}