tools: move tree-diff into ./tools
Move the `tree-diff` tool into ./tools, which is our new place for tools used by the test-suite or during development. The only hard-coded user is the TestBase, so fix its path to the tool so the test-suite will continue to find it.
This commit is contained in:
parent
2aa9755f88
commit
06119f7d88
2 changed files with 1 additions and 1 deletions
|
|
@ -156,7 +156,7 @@ class TestBase():
|
|||
"""
|
||||
|
||||
checkout = TestBase.locate_test_checkout()
|
||||
output = subprocess.check_output([os.path.join(checkout, "tree-diff"), path1, path2])
|
||||
output = subprocess.check_output([os.path.join(checkout, "tools/tree-diff"), path1, path2])
|
||||
return json.loads(output)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue