diff options
author | Chaoren Lin <chaorenl@google.com> | 2015-07-02 01:26:39 +0000 |
---|---|---|
committer | Chaoren Lin <chaorenl@google.com> | 2015-07-02 01:26:39 +0000 |
commit | d8923e64d8ff368ea13e7a88b7869740001b7fe8 (patch) | |
tree | 0dba1d65d187c8a6d7bf0ac0138512cfb9dd11b8 | |
parent | e1002268798ecedadaa9cdf6cc52b26e446ef3a7 (diff) | |
download | bcm5719-llvm-d8923e64d8ff368ea13e7a88b7869740001b7fe8.tar.gz bcm5719-llvm-d8923e64d8ff368ea13e7a88b7869740001b7fe8.zip |
Change executable name to a.out.
Summary: The long name causes problems with some shells.
Reviewers: sivachandra
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D10888
llvm-svn: 241222
-rw-r--r-- | lldb/test/functionalities/watchpoint/hello_watchpoint/TestMyFirstWatchpoint.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/functionalities/watchpoint/hello_watchpoint/TestMyFirstWatchpoint.py b/lldb/test/functionalities/watchpoint/hello_watchpoint/TestMyFirstWatchpoint.py index 16a3d9d212f..8d34c8aea20 100644 --- a/lldb/test/functionalities/watchpoint/hello_watchpoint/TestMyFirstWatchpoint.py +++ b/lldb/test/functionalities/watchpoint/hello_watchpoint/TestMyFirstWatchpoint.py @@ -39,7 +39,7 @@ class HelloWatchpointTestCase(TestBase): # And the watchpoint variable declaration line number. self.decl = line_number(self.source, '// Watchpoint variable declaration.') # Build dictionary to have unique executable names for each test method. - self.exe_name = self.testMethodName + self.exe_name = 'a.out' self.d = {'C_SOURCES': self.source, 'EXE': self.exe_name} def hello_watchpoint(self): |