From 7f0ccc5580faa43c2554d9d016c27ebe069362c5 Mon Sep 17 00:00:00 2001 From: jsmall-nvidia Date: Wed, 28 Nov 2018 17:56:32 -0500 Subject: * Renamed spSessionHasCompileTargetSupport to spSessionCheckCompileTargetSupport. (#728) * Improved return codes from spSessionCheckCompileTargetSupport --- tools/slang-test/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/slang-test/main.cpp') 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; } -- cgit v1.2.3