diff options
Diffstat (limited to 'lldb/test/functionalities/abbreviation/TestAbbreviations.py')
-rw-r--r-- | lldb/test/functionalities/abbreviation/TestAbbreviations.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lldb/test/functionalities/abbreviation/TestAbbreviations.py b/lldb/test/functionalities/abbreviation/TestAbbreviations.py index 4df8cbc006a..38b9005537a 100644 --- a/lldb/test/functionalities/abbreviation/TestAbbreviations.py +++ b/lldb/test/functionalities/abbreviation/TestAbbreviations.py @@ -90,7 +90,10 @@ class AbbreviationsTestCase(TestBase): def running_abbreviations (self): exe = os.path.join (os.getcwd(), "a.out") - self.expect("fil " + exe, + # Use "file", i.e., no abbreviation. We're exactly matching the command + # verbatim when dealing with remote testsuite execution. + # For more details, see TestBase.runCmd(). + self.expect("file " + exe, patterns = [ "Current executable set to .*a.out.*" ]) # By default, the setting interpreter.expand-regex-aliases is false. |