@@ -1134,7 +1134,11 @@ TestResult runComputeComparisonImpl(TestInput& input, const char * langOption, S
1134
1134
1135
1135
spawner.pushArgument (langOption);
1136
1136
spawner.pushArgument (" -o" );
1137
- spawner.pushArgument (outputStem + " .actual.txt" );
1137
+ auto actualOutputFile = outputStem + " .actual.txt" ;
1138
+ spawner.pushArgument (actualOutputFile);
1139
+
1140
+ // clear the stale actual output file first. This will allow us to detect error if render-test fails and outputs nothing.
1141
+ File::WriteAllText (actualOutputFile, " " );
1138
1142
1139
1143
if (spawnAndWait (outputStem, spawner) != kOSError_None )
1140
1144
{
@@ -1145,7 +1149,7 @@ TestResult runComputeComparisonImpl(TestInput& input, const char * langOption, S
1145
1149
auto actualOutput = getOutput (spawner);
1146
1150
1147
1151
// check against reference output
1148
- if (!File::Exists (outputStem + " .actual.txt " ))
1152
+ if (!File::Exists (actualOutputFile ))
1149
1153
{
1150
1154
printf (" render-test not producing expected outputs.\n " );
1151
1155
printf (" render-test output:\n %s\n " , actualOutput.Buffer ());
@@ -1156,7 +1160,7 @@ TestResult runComputeComparisonImpl(TestInput& input, const char * langOption, S
1156
1160
printf (" referenceOutput %s not found.\n " , referenceOutput.Buffer ());
1157
1161
return kTestResult_Fail ;
1158
1162
}
1159
- auto actualOutputContent = File::ReadAllText (outputStem + " .actual.txt " );
1163
+ auto actualOutputContent = File::ReadAllText (actualOutputFile );
1160
1164
auto actualProgramOutput = Split (actualOutputContent, ' \n ' );
1161
1165
auto referenceProgramOutput = Split (File::ReadAllText (referenceOutput), ' \n ' );
1162
1166
auto printOutput = [&]()
0 commit comments