forked from OSchip/llvm-project
18 lines
597 B
Python
18 lines
597 B
Python
import lldb
|
|
from lldbsuite.test.lldbtest import *
|
|
from lldbsuite.test.decorators import *
|
|
|
|
class ReproducerTestCase(TestBase):
|
|
|
|
mydir = TestBase.compute_mydir(__file__)
|
|
|
|
@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"])
|