[Lldb-commits] [lldb] r155216 - /lldb/branches/lldb-platform-work/test/expression_command/test/TestExprs.py
Johnny Chen
johnny.chen at apple.com
Fri Apr 20 11:41:24 PDT 2012
Author: johnny
Date: Fri Apr 20 13:41:23 2012
New Revision: 155216
URL: http://llvm.org/viewvc/llvm-project?rev=155216&view=rev
Log:
Relax some substring comparison a bit to take into acoount the remote testsuite execution.
Modified:
lldb/branches/lldb-platform-work/test/expression_command/test/TestExprs.py
Modified: lldb/branches/lldb-platform-work/test/expression_command/test/TestExprs.py
URL: http://llvm.org/viewvc/llvm-project/lldb/branches/lldb-platform-work/test/expression_command/test/TestExprs.py?rev=155216&r1=155215&r2=155216&view=diff
==============================================================================
--- lldb/branches/lldb-platform-work/test/expression_command/test/TestExprs.py (original)
+++ lldb/branches/lldb-platform-work/test/expression_command/test/TestExprs.py Fri Apr 20 13:41:23 2012
@@ -75,7 +75,12 @@
self.expect("expression argv[0]",
substrs = ["(const char *)",
- os.path.join(self.mydir, "a.out")])
+ #
+ # Relax this substring comparison a bit to take into acoount
+ # the remote testsuite execution.
+ #
+ #os.path.join(self.mydir, "a.out")]
+ "a.out"])
# (const char *) $8 = 0x... "/Volumes/data/lldb/svn/trunk/test/expression_command/test/a.out"
@python_api_test
More information about the lldb-commits
mailing list