diff options
| author | jsmall-nvidia <jsmall@nvidia.com> | 2021-12-07 13:15:23 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-07 13:15:23 -0500 |
| commit | 8b3df74758c536db9535903158242dd2350e5265 (patch) | |
| tree | 98258066e11153d747448d68785bbb5be251d448 /tools | |
| parent | 9e666a332aafeffdc15ceab6017fe377144a928b (diff) | |
Output of IR ids as command line option (#2043)
* #include an absolute path didn't work - because paths were taken to always be relative.
* WIP control of dump options.
* Removed SourceManager for IRDumpOptions
* Arm aarch64 debug connection timeout - as CI timed out.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/slang-test/test-context.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/slang-test/test-context.cpp b/tools/slang-test/test-context.cpp index d5af41a78..3e61287cf 100644 --- a/tools/slang-test/test-context.cpp +++ b/tools/slang-test/test-context.cpp @@ -18,8 +18,8 @@ TestContext::TestContext() /// if we are testing on arm, debug, we may want to increase the connection timeout #if (SLANG_PROCESSOR_ARM || SLANG_PROCESSOR_ARM_64) && defined(_DEBUG) - // 5 mins(!). This seems to be the order of time needed for timeout on a CI ARM test system on debug - connectionTimeOutInMs = 1000 * 60 * 5; + // 10 mins(!). This seems to be the order of time needed for timeout on a CI ARM test system on debug + connectionTimeOutInMs = 1000 * 60 * 10; #endif } |
