[PATCH] D42156: Force lit to execute the ASan and TSan tests on iOS devices sequentially

Dan Liew via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jan 17 20:25:19 PST 2018


delcypher added inline comments.


================
Comment at: test/lit.common.cfg:297
+# tests on iOS devices.
+if config.host_os == 'Darwin' and config.ios:
+  lit_config.warning("iOS device test cases being run sequentially")
----------------
kubamracek wrote:
> drop the "and config.ios" part of the condition
If we do that the warning will be wrong. It will fire if the host is Darwin, regardless of if the target is an iOS device or not.


https://reviews.llvm.org/D42156





More information about the llvm-commits mailing list