================
@@ -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)
----------------
JDevlieghere wrote:
Yeah, this probably warrants a centralized helper, maybe do 2x for debug
builds, 10x for sanitized builds, etc.
https://github.com/llvm/llvm-project/pull/163292
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits