[llvm-commits] CVS: llvm/test/QMTest/llvm.py

John Criswell criswell at cs.uiuc.edu
Fri Oct 10 16:47:01 PDT 2003


Changes in directory llvm/test/QMTest:

llvm.py updated: 1.18 -> 1.19

---
Log message:

Added code that helps prevent different tests from using the same
output files.



---
Diffs of the changes:  (+2 -2)

Index: llvm/test/QMTest/llvm.py
diff -u llvm/test/QMTest/llvm.py:1.18 llvm/test/QMTest/llvm.py:1.19
--- llvm/test/QMTest/llvm.py:1.18	Fri Oct 10 15:59:33 2003
+++ llvm/test/QMTest/llvm.py	Fri Oct 10 16:46:35 2003
@@ -207,8 +207,8 @@
 		# Construct the pathname of the source file and object file.
 		#
 		srcfile=srcroot + '/' + self.srcfile
-		bcfile=tmpdir + '/' + os.path.basename (self.srcfile)
-		objfile=tmpdir + '/' + os.path.basename (self.srcfile) + '.tc'
+		bcfile=tmpdir + '/feature-cc-' + os.path.basename (self.srcfile)
+		objfile=tmpdir + '/feature-cc-' + os.path.basename (self.srcfile) + '.tc'
 
 		#
 		# Construct the pathnames to the various utilities.





More information about the llvm-commits mailing list