[PATCH] D51326: [lit, shtest-timeout] Always use an internal shell for the shtest-timeout to diagnose buildbot failures

Stella Stamenova via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 28 09:26:05 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL340840: [lit, shtest-timeout] Always use an internal shell for the shtest-timeout to… (authored by stella.stamenova, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D51326?vs=162750&id=162891#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D51326

Files:
  llvm/trunk/utils/lit/tests/Inputs/shtest-timeout/lit.cfg


Index: llvm/trunk/utils/lit/tests/Inputs/shtest-timeout/lit.cfg
===================================================================
--- llvm/trunk/utils/lit/tests/Inputs/shtest-timeout/lit.cfg
+++ llvm/trunk/utils/lit/tests/Inputs/shtest-timeout/lit.cfg
@@ -13,7 +13,9 @@
     externalShell = False
 else:
     lit_config.note('Using external shell')
-    externalShell = True
+    externalShell = (not sys.platform in ['win32'])
+    if not externalShell:
+        lit_config.note('External shell requested, but using internal shell')
 
 configSetTimeout = lit_config.params.get('set_timeout', '0')
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D51326.162891.patch
Type: text/x-patch
Size: 602 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180828/b0d77b61/attachment.bin>


More information about the llvm-commits mailing list