1import lldb 2from lldbsuite.test.lldbtest import * 3from lldbsuite.test.decorators import * 4 5class ReproducerTestCase(TestBase): 6 7 @no_debug_info_test 8 def test_reproducer_generate_invalid_invocation(self): 9 self.expect("reproducer generate f", error=True, 10 substrs=["'reproducer generate' doesn't take any arguments"]) 11 12 @no_debug_info_test 13 def test_reproducer_status_invalid_invocation(self): 14 self.expect("reproducer status f", error=True, 15 substrs=["'reproducer status' doesn't take any arguments"]) 16