Files
clang-p2996/lldb/test/API/commands/target/modules/search-paths/insert/TestTargetModulesSearchpathsInsert.py
Dave Lee 4cc8f2a017 [lldb][tests] Automatically call compute_mydir (NFC)
Eliminate boilerplate of having each test manually assign to `mydir` by calling
`compute_mydir` in lldbtest.py.

Differential Revision: https://reviews.llvm.org/D128077
2022-06-17 14:34:49 -07:00

19 lines
661 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'.")