Skip to content

Commit e2b4730

Browse files
authored
Merge pull request shader-slang#240 from csyonghe/master
Fixing issue shader-slang#236
2 parents 832d9c7 + 8ba5d28 commit e2b4730

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

tools/render-test/render-gl.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ class GLRenderer : public Renderer, public ShaderCompiler
609609
}
610610

611611
return shaderID;
612-
}
612+
}
613613

614614
virtual void dispatchCompute(int x, int y, int z) override
615615
{

tools/slang-test/main.cpp

+7-3
Original file line numberDiff line numberDiff line change
@@ -1134,7 +1134,11 @@ TestResult runComputeComparisonImpl(TestInput& input, const char * langOption, S
11341134

11351135
spawner.pushArgument(langOption);
11361136
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, "");
11381142

11391143
if (spawnAndWait(outputStem, spawner) != kOSError_None)
11401144
{
@@ -1145,7 +1149,7 @@ TestResult runComputeComparisonImpl(TestInput& input, const char * langOption, S
11451149
auto actualOutput = getOutput(spawner);
11461150

11471151
// check against reference output
1148-
if (!File::Exists(outputStem + ".actual.txt"))
1152+
if (!File::Exists(actualOutputFile))
11491153
{
11501154
printf("render-test not producing expected outputs.\n");
11511155
printf("render-test output:\n%s\n", actualOutput.Buffer());
@@ -1156,7 +1160,7 @@ TestResult runComputeComparisonImpl(TestInput& input, const char * langOption, S
11561160
printf("referenceOutput %s not found.\n", referenceOutput.Buffer());
11571161
return kTestResult_Fail;
11581162
}
1159-
auto actualOutputContent = File::ReadAllText(outputStem + ".actual.txt");
1163+
auto actualOutputContent = File::ReadAllText(actualOutputFile);
11601164
auto actualProgramOutput = Split(actualOutputContent, '\n');
11611165
auto referenceProgramOutput = Split(File::ReadAllText(referenceOutput), '\n');
11621166
auto printOutput = [&]()

0 commit comments

Comments
 (0)