diff options
| author | jsmall-nvidia <jsmall@nvidia.com> | 2021-12-07 14:16:28 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-07 14:16:28 -0500 |
| commit | 646eecc6af878ea7682c814c15b4e838c3231ee3 (patch) | |
| tree | 2b77120d2e9ee0dd95b44e4a8ea1e36e4a885285 /tools/slang-test | |
| parent | 8b3df74758c536db9535903158242dd2350e5265 (diff) | |
Check g++ version compatibility (#2044)
* #include an absolute path didn't work - because paths were taken to always be relative.
* Test gcc >= 5.0
* Disable codegen for reflection tests.
* Add parsing options.
* Small comment changes to kick CI build.
Diffstat (limited to 'tools/slang-test')
| -rw-r--r-- | tools/slang-test/slang-test-main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/slang-test/slang-test-main.cpp b/tools/slang-test/slang-test-main.cpp index f57fe22a1..685e9dd7a 100644 --- a/tools/slang-test/slang-test-main.cpp +++ b/tools/slang-test/slang-test-main.cpp @@ -1914,7 +1914,7 @@ static TestResult runCPPCompilerExecute(TestContext* context, TestInput& input) const auto& diagnostics = compileResult->getDiagnostics(); - // If the actual compilation failed, then the output will be + // If the actual compilation failed, then the output will be the summary if (SLANG_FAILED(diagnostics.result)) { actualOutput = _calcSummary(diagnostics); |
