summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2018-11-28 17:56:32 -0500
committerTim Foley <tfoleyNV@users.noreply.github.com>2018-11-28 14:56:32 -0800
commit7f0ccc5580faa43c2554d9d016c27ebe069362c5 (patch)
treecd958b3cb2e162c18c08583935982f0416f5a07b /tools
parente21d5ad650130631e17662ce8f22d15315ab597a (diff)
* Renamed spSessionHasCompileTargetSupport to spSessionCheckCompileTargetSupport. (#728)
* Improved return codes from spSessionCheckCompileTargetSupport
Diffstat (limited to 'tools')
-rw-r--r--tools/slang-test/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/slang-test/main.cpp b/tools/slang-test/main.cpp
index 9ce92f5bb..f710d63f2 100644
--- a/tools/slang-test/main.cpp
+++ b/tools/slang-test/main.cpp
@@ -944,7 +944,7 @@ TestResult runCrossCompilerTest(TestContext* context, TestInput& input)
SlangCompileTarget target = _getCompileTarget(args[targetIndex + 1].getUnownedSlice());
// Check the session supports it. If not we ignore it
- if (SLANG_FAILED(spSessionHasCompileTargetSupport(context->getSession(), target)))
+ if (SLANG_FAILED(spSessionCheckCompileTargetSupport(context->getSession(), target)))
{
return TestResult::Ignored;
}