summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2021-10-28 17:27:40 -0400
committerGitHub <noreply@github.com>2021-10-28 17:27:40 -0400
commitd406e72f9a79018155f0442bb74cccaf61c13eb0 (patch)
tree3aa2379c46c7e0b4e4795df6b610ea5940670833
parenta9bbcb90c812bcb1fe6017aeee38bcf149a93160 (diff)
Re-enable gfx unit tests (#1993)
* #include an absolute path didn't work - because paths were taken to always be relative. * Reenable gfx unit tests * Kick.
-rw-r--r--tools/slang-test/slang-test-main.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/slang-test/slang-test-main.cpp b/tools/slang-test/slang-test-main.cpp
index d9451bc92..c3f1d7358 100644
--- a/tools/slang-test/slang-test-main.cpp
+++ b/tools/slang-test/slang-test-main.cpp
@@ -3685,15 +3685,12 @@ SlangResult innerMain(int argc, char** argv)
runUnitTestModule(&context, testOptions, context.options.defaultSpawnType, "slang-unit-test-tool");
}
- // TODO(JS): Temporarily disable gfx unit tests, as some tests are failing for unknown reasons.
-#if 0
{
TestOptions testOptions;
testOptions.categories.add(unitTestCategory);
runUnitTestModule(&context, testOptions, SpawnType::UseProxy, "gfx-unit-test-tool");
}
-#endif
-
+
TestReporter::set(nullptr);
}