mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-27 15:41:46 +00:00
No need to add the test script containing directory to sys.path more than once.
llvm-svn: 106929
This commit is contained in:
parent
b4d39841e4
commit
c43d789a38
@ -112,7 +112,8 @@ def visit(prefix, dir, names):
|
||||
|
||||
if '.py' == os.path.splitext(name)[1] and name.startswith(prefix):
|
||||
# We found a pattern match for our test case. Add it to the suite.
|
||||
sys.path.append(dir)
|
||||
if not sys.path.count(dir):
|
||||
sys.path.append(dir)
|
||||
base = os.path.splitext(name)[0]
|
||||
suite.addTests(unittest.defaultTestLoader.loadTestsFromName(base))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user