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

LLVM llvm at cs.uiuc.edu
Mon Jun 21 01:45:02 PDT 2004


Changes in directory llvm/test/QMTest:

llvm.py updated: 1.28 -> 1.29

---
Log message:

Back out the WNOHANG option to waitpid in ExecProgram. This seems to have
made things worse. 


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

Index: llvm/test/QMTest/llvm.py
diff -u llvm/test/QMTest/llvm.py:1.28 llvm/test/QMTest/llvm.py:1.29
--- llvm/test/QMTest/llvm.py:1.28	Sat Jun 19 14:38:38 2004
+++ llvm/test/QMTest/llvm.py	Mon Jun 21 01:37:11 2004
@@ -81,7 +81,7 @@
 	#
 	# Wait for the child process to exit.
 	#
-	(pid, status) = os.waitpid (child, os.WNOHANG )
+	(pid, status) = os.waitpid (child, 0 )
 
 	#
 	# Close our pipes to the child.





More information about the llvm-commits mailing list