================
@@ -27,6 +27,10 @@
     Literal,
 )
 
+# set timeout based on whether ASAN was enabled or not. Increase
+# timeout by a factor of 10 if ASAN is enabled.
+DEFAULT_TIMEOUT = 10 * (10 if ("ASAN_OPTIONS" in os.environ) else 1)
----------------
ashgti wrote:

There is one other case where we may want a longer timeout.

When we're using a `CMAKE_BUILD_TYPE=Debug` the tests do have more timeouts. I 
think we've tagged a few places, but we could also increase the timeout for 
those as well.

https://github.com/llvm/llvm-project/pull/163292
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to