diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2010-06-22 00:11:26 +0000 | 
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2010-06-22 00:11:26 +0000 | 
| commit | a02199f5e71ff28871ffa091c8d8510c86d74fab (patch) | |
| tree | 46565b0431cc56a53add6df246dcf6ab8295a633 /lldb/test | |
| parent | 5f9575c1cd791486e87a6c6cd62b1f9afe1c0e7f (diff) | |
| download | bcm5719-llvm-a02199f5e71ff28871ffa091c8d8510c86d74fab.tar.gz bcm5719-llvm-a02199f5e71ff28871ffa091c8d8510c86d74fab.zip | |
Remove stale reference to the lldb path component.
llvm-svn: 106509
Diffstat (limited to 'lldb/test')
| -rwxr-xr-x | lldb/test/tester.py | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/lldb/test/tester.py b/lldb/test/tester.py index af2c77b0a86..8e6c3551899 100755 --- a/lldb/test/tester.py +++ b/lldb/test/tester.py @@ -5,9 +5,10 @@ import math, os.path, re, sys, time, unittest  def setupSysPath():    testPath = sys.path[0] -  rem = re.match("(^.*lldb/)test$", testPath) +  print "sys.path[0] =", testPath +  rem = re.match("(^.*/)test$", testPath)    if not rem: -    print "This script expects to reside in .../lldb/test." +    print "This script expects to reside in .../test."      sys.exit(-1)    lldbBasePath = rem.group(1)    lldbDebugPythonPath = "build/Debug/LLDB.framework/Resources/Python" | 

