[Lldb-commits] [lldb] r241222 - Change executable name to a.out.

Chaoren Lin chaorenl at google.com
Wed Jul 1 18:26:40 PDT 2015


Author: chaoren
Date: Wed Jul  1 20:26:39 2015
New Revision: 241222

URL: http://llvm.org/viewvc/llvm-project?rev=241222&view=rev
Log:
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

Modified:
    lldb/trunk/test/functionalities/watchpoint/hello_watchpoint/TestMyFirstWatchpoint.py

Modified: lldb/trunk/test/functionalities/watchpoint/hello_watchpoint/TestMyFirstWatchpoint.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/watchpoint/hello_watchpoint/TestMyFirstWatchpoint.py?rev=241222&r1=241221&r2=241222&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/watchpoint/hello_watchpoint/TestMyFirstWatchpoint.py (original)
+++ lldb/trunk/test/functionalities/watchpoint/hello_watchpoint/TestMyFirstWatchpoint.py Wed Jul  1 20:26:39 2015
@@ -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):





More information about the lldb-commits mailing list