[test-suite] r263147 - lit: Add 'cp' to the list of ignored executables
Matthias Braun via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 10 10:51:57 PST 2016
Author: matze
Date: Thu Mar 10 12:51:56 2016
New Revision: 263147
URL: http://llvm.org/viewvc/llvm-project?rev=263147&view=rev
Log:
lit: Add 'cp' to the list of ignored executables
Modified:
test-suite/trunk/litsupport/shellcommand.py
Modified: test-suite/trunk/litsupport/shellcommand.py
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/litsupport/shellcommand.py?rev=263147&r1=263146&r2=263147&view=diff
==============================================================================
--- test-suite/trunk/litsupport/shellcommand.py (original)
+++ test-suite/trunk/litsupport/shellcommand.py Thu Mar 10 12:51:56 2016
@@ -67,7 +67,7 @@ def parse(commandline):
# Some executables are just used to cleanup/prepare for a test run, ignore them
# here.
-_ignore_executables = set(['cd', 'rm'])
+_ignore_executables = set(['cd', 'rm', 'cp'])
def getMainExecutable(context):
More information about the llvm-commits
mailing list