This is an ongoing series of commits that are reformatting our Python code. Reformatting is done with `black` (23.1.0). If you end up having problems merging this commit because you have made changes to a python file, the best way to handle that is to run `git checkout --ours <yourfile>` and then reformat it with black. RFC: https://discourse.llvm.org/t/rfc-document-and-standardize-python-code-style Differential revision: https://reviews.llvm.org/D151460
25 lines
715 B
Python
25 lines
715 B
Python
import lldb
|
|
from lldbsuite.test.lldbtest import *
|
|
from lldbsuite.test.decorators import *
|
|
import lldbsuite.test.lldbutil as lldbutil
|
|
|
|
|
|
class TestCase(TestBase):
|
|
@no_debug_info_test
|
|
def test_invalid_arg(self):
|
|
self.build()
|
|
exe = self.getBuildArtifact("a.out")
|
|
|
|
self.expect("target create %s" % (exe))
|
|
self.expect(
|
|
"target modules search-paths insert -1 a b",
|
|
error=True,
|
|
startstr="error: <index> parameter is not an integer: '-1'.",
|
|
)
|
|
|
|
self.expect(
|
|
"target modules search-paths insert abcdefx a b",
|
|
error=True,
|
|
startstr="error: <index> parameter is not an integer: 'abcdefx'.",
|
|
)
|