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:
David Rheinsberg 2020-05-26 17:08:17 +02:00
parent 2aa9755f88
commit 06119f7d88
2 changed files with 1 additions and 1 deletions

View file

@ -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)