diff options
author | Raphael Isemann <teemperor@gmail.com> | 2019-09-03 09:21:47 +0000 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-09-03 09:21:47 +0000 |
commit | b78900e0ab52fc9daec13fe2f01b6f4af1cc8870 (patch) | |
tree | e74016a16d9c1edb002f3b9a10e257e9522cf29d /lldb/packages/Python/lldbsuite/test/commands/command/script_alias | |
parent | e76113347de7c3cc8e9331d9dbec1a3b478655ed (diff) | |
download | bcm5719-llvm-b78900e0ab52fc9daec13fe2f01b6f4af1cc8870.tar.gz bcm5719-llvm-b78900e0ab52fc9daec13fe2f01b6f4af1cc8870.zip |
[lldb][NFC] Simplify script_alias test
llvm-svn: 370718
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/commands/command/script_alias')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/commands/command/script_alias/TestCommandScriptAlias.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/commands/command/script_alias/TestCommandScriptAlias.py b/lldb/packages/Python/lldbsuite/test/commands/command/script_alias/TestCommandScriptAlias.py index e454365edeb..515cbf10a6c 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/command/script_alias/TestCommandScriptAlias.py +++ b/lldb/packages/Python/lldbsuite/test/commands/command/script_alias/TestCommandScriptAlias.py @@ -13,10 +13,7 @@ class CommandScriptAliasTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) - def test(self): - self.pycmd_tests() - - def pycmd_tests(self): + def test_pycmd(self): self.runCmd("command script import tcsacmd.py") self.runCmd("command script add -f tcsacmd.some_command_here attach") |