diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2009-08-01 04:11:36 +0000 | 
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-01 04:11:36 +0000 | 
| commit | dc4a0f742769598dd7611d57b20a83b33369ef24 (patch) | |
| tree | 7d740cf61b75ad8bdba9b4c6795181b1b3e1a157 | |
| parent | 3ee0543e67b2961875a7ac8bc6798c8f063f56ee (diff) | |
| download | bcm5719-llvm-dc4a0f742769598dd7611d57b20a83b33369ef24.tar.gz bcm5719-llvm-dc4a0f742769598dd7611d57b20a83b33369ef24.zip  | |
lit: Fix a name lookup problem, which only occurred on a race condition. This is
why dynamic binding sucks.
llvm-svn: 77773
| -rwxr-xr-x | clang/utils/test/TestRunner.py | 1 | ||||
| -rw-r--r-- | clang/utils/test/Util.py | 2 | 
2 files changed, 1 insertions, 2 deletions
diff --git a/clang/utils/test/TestRunner.py b/clang/utils/test/TestRunner.py index 9206427b451..23038b3e216 100755 --- a/clang/utils/test/TestRunner.py +++ b/clang/utils/test/TestRunner.py @@ -1,4 +1,3 @@ -import errno  import os  import platform  import re diff --git a/clang/utils/test/Util.py b/clang/utils/test/Util.py index bacdab8a58e..66cbd0dfa52 100644 --- a/clang/utils/test/Util.py +++ b/clang/utils/test/Util.py @@ -1,4 +1,4 @@ -import os, sys +import errno, os, sys  def warning(msg):      print >>sys.stderr, '%s: warning: %s' % (sys.argv[0], msg)  | 

