diff options
| author | jsmall-nvidia <jsmall@nvidia.com> | 2021-10-28 17:27:40 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-28 17:27:40 -0400 |
| commit | d406e72f9a79018155f0442bb74cccaf61c13eb0 (patch) | |
| tree | 3aa2379c46c7e0b4e4795df6b610ea5940670833 | |
| parent | a9bbcb90c812bcb1fe6017aeee38bcf149a93160 (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.cpp | 5 |
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); } |
