From 8b3df74758c536db9535903158242dd2350e5265 Mon Sep 17 00:00:00 2001 From: jsmall-nvidia Date: Tue, 7 Dec 2021 13:15:23 -0500 Subject: 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. --- tools/slang-test/test-context.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools') 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 } -- cgit v1.2.3