diff options
| author | jsmall-nvidia <jsmall@nvidia.com> | 2018-11-28 17:56:32 -0500 |
|---|---|---|
| committer | Tim Foley <tfoleyNV@users.noreply.github.com> | 2018-11-28 14:56:32 -0800 |
| commit | 7f0ccc5580faa43c2554d9d016c27ebe069362c5 (patch) | |
| tree | cd958b3cb2e162c18c08583935982f0416f5a07b /tools | |
| parent | e21d5ad650130631e17662ce8f22d15315ab597a (diff) | |
* Renamed spSessionHasCompileTargetSupport to spSessionCheckCompileTargetSupport. (#728)
* Improved return codes from spSessionCheckCompileTargetSupport
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/slang-test/main.cpp | 2 |
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; } |
