From 434b81d0a26a69df5b6862d09c0feca8f99ae391 Mon Sep 17 00:00:00 2001 From: Raphael Isemann Date: Sun, 1 Sep 2019 19:29:01 +0000 Subject: [lldb] Test and fix invalid log command invocations llvm-svn: 370619 --- .../log/invalid-args/TestInvalidArgsLog.py | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 lldb/packages/Python/lldbsuite/test/commands/log/invalid-args/TestInvalidArgsLog.py (limited to 'lldb/packages/Python/lldbsuite') diff --git a/lldb/packages/Python/lldbsuite/test/commands/log/invalid-args/TestInvalidArgsLog.py b/lldb/packages/Python/lldbsuite/test/commands/log/invalid-args/TestInvalidArgsLog.py new file mode 100644 index 00000000000..b45d1f345fd --- /dev/null +++ b/lldb/packages/Python/lldbsuite/test/commands/log/invalid-args/TestInvalidArgsLog.py @@ -0,0 +1,25 @@ +import lldb +from lldbsuite.test.lldbtest import * +from lldbsuite.test.decorators import * + +class InvalidArgsLogTestCase(TestBase): + + mydir = TestBase.compute_mydir(__file__) + + def setUp(self): + TestBase.setUp(self) + + @no_debug_info_test + def test_enable_empty(self): + self.expect("log enable", error=True, + substrs=["error: log enable takes a log channel and one or more log types."]) + + @no_debug_info_test + def test_disable_empty(self): + self.expect("log disable", error=True, + substrs=["error: log disable takes a log channel and one or more log types."]) + + @no_debug_info_test + def test_timer_empty(self): + self.expect("log timer", error=True, + substrs=["error: Missing subcommand"]) -- cgit v1.2.3