mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-10 06:26:08 +00:00
21 lines
648 B
Python
21 lines
648 B
Python
import lldb
|
|
from lldbsuite.test.lldbtest import *
|
|
from lldbsuite.test.decorators import *
|
|
|
|
class ReproducerTestCase(TestBase):
|
|
|
|
mydir = TestBase.compute_mydir(__file__)
|
|
|
|
def setUp(self):
|
|
TestBase.setUp(self)
|
|
|
|
@no_debug_info_test
|
|
def test_reproducer_generate_invalid_invocation(self):
|
|
self.expect("reproducer generate f", error=True,
|
|
substrs=["'reproducer generate' takes no arguments"])
|
|
|
|
@no_debug_info_test
|
|
def test_reproducer_status_invalid_invocation(self):
|
|
self.expect("reproducer status f", error=True,
|
|
substrs=["'reproducer status' takes no arguments"])
|