diff options
| author | Zachary Turner <zturner@google.com> | 2015-10-26 16:51:09 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2015-10-26 16:51:09 +0000 |
| commit | f67f7e31e7231c488d29a36b31c2725ad86acdb6 (patch) | |
| tree | 3f7cd03f40251f83822755b6cec09ad5d2301dec /lldb/test/functionalities/abbreviation/TestCommonShortSpellings.py | |
| parent | 36b225913c746c9d965295666b599bd3d1690a17 (diff) | |
| download | bcm5719-llvm-f67f7e31e7231c488d29a36b31c2725ad86acdb6.tar.gz bcm5719-llvm-f67f7e31e7231c488d29a36b31c2725ad86acdb6.zip | |
Convert `long` to `int`, and portably detect all integral types.
llvm-svn: 251305
Diffstat (limited to 'lldb/test/functionalities/abbreviation/TestCommonShortSpellings.py')
| -rw-r--r-- | lldb/test/functionalities/abbreviation/TestCommonShortSpellings.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/test/functionalities/abbreviation/TestCommonShortSpellings.py b/lldb/test/functionalities/abbreviation/TestCommonShortSpellings.py index 3772e63d085..833229e06b0 100644 --- a/lldb/test/functionalities/abbreviation/TestCommonShortSpellings.py +++ b/lldb/test/functionalities/abbreviation/TestCommonShortSpellings.py @@ -32,7 +32,7 @@ class CommonShortSpellingsTestCase(TestBase): ('ta st li', 'target stop-hook list'), ] - for (short, long) in abbrevs: - command_interpreter.ResolveCommand(short, result) + for (short_val, long_val) in abbrevs: + command_interpreter.ResolveCommand(short_val, result) self.assertTrue(result.Succeeded()) - self.assertEqual(long, result.GetOutput()) + self.assertEqual(long_val, result.GetOutput()) |

