[cfe-commits] [libcxx] r113934 - /libcxx/trunk/test/lit.cfg
Daniel Dunbar
daniel at zuster.org
Tue Sep 14 21:18:37 PDT 2010
Author: ddunbar
Date: Tue Sep 14 23:18:37 2010
New Revision: 113934
URL: http://llvm.org/viewvc/llvm-project?rev=113934&view=rev
Log:
tests: Remove some stray cleanup code.
Modified:
libcxx/trunk/test/lit.cfg
Modified: libcxx/trunk/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/lit.cfg?rev=113934&r1=113933&r2=113934&view=diff
==============================================================================
--- libcxx/trunk/test/lit.cfg (original)
+++ libcxx/trunk/test/lit.cfg Tue Sep 14 23:18:37 2010
@@ -69,7 +69,6 @@
source_path] + self.options
out, err, exitCode = self.execute_command(cmd)
if exitCode != 0:
- exec_file.close()
report = """Command: %s\n""" % ' '.join(["'%s'" % a
for a in cmd])
report += """Exit Code: %d\n""" % exitCode
@@ -83,7 +82,6 @@
cmd = [exec_path]
out, err, exitCode = self.execute_command(cmd)
if exitCode != 0:
- exec_path.close()
report = """Command: %s\n""" % ' '.join(["'%s'" % a
for a in cmd])
report += """Exit Code: %d\n""" % exitCode
More information about the cfe-commits
mailing list