blob: bb013409ace438929e500eb6033baa8f6f2e271c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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"])
|