summaryrefslogtreecommitdiffstats
path: root/tools/render-test
diff options
context:
space:
mode:
Diffstat (limited to 'tools/render-test')
-rw-r--r--tools/render-test/slang-support.cpp13
1 files changed, 12 insertions, 1 deletions
diff --git a/tools/render-test/slang-support.cpp b/tools/render-test/slang-support.cpp
index ed7bb752e..5b2d69bf4 100644
--- a/tools/render-test/slang-support.cpp
+++ b/tools/render-test/slang-support.cpp
@@ -85,9 +85,20 @@ void ShaderCompilerUtil::Output::reset()
args.add(arg.value.getBuffer());
}
+ // If there are additional args parse them
if (args.getCount())
{
- SLANG_RETURN_ON_FAIL(spProcessCommandLineArguments(slangRequest, args.getBuffer(), int(args.getCount())));
+ const auto res = slangRequest->processCommandLineArguments(args.getBuffer(), int(args.getCount()));
+
+ // If there is a parse failure and diagnostic, output it
+ if (SLANG_FAILED(res))
+ {
+ if (auto diagnostics = slangRequest->getDiagnosticOutput())
+ {
+ fprintf(stderr, "%s", diagnostics);
+ }
+ return res;
+ }
}
}