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
This commit is contained in:
Chaoren Lin
2015-07-02 01:26:39 +00:00
parent e100226879
commit d8923e64d8

View File

@@ -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):