diff options
| author | Jon Turney <jon.turney@dronecode.org.uk> | 2020-04-27 22:10:30 +0100 |
|---|---|---|
| committer | Jon Turney <jon.turney@dronecode.org.uk> | 2020-04-30 20:41:36 +0100 |
| commit | 630cfd84ad9fd924ea56ccbf69cf37b040b2b3d3 (patch) | |
| tree | d744f3f159dfe0aaa4181fd2aa3075fce5a43e00 /tools | |
| parent | 3cff11a75b4af8824281b473bda1f8c45a4add7d (diff) | |
| download | meson-630cfd84ad9fd924ea56ccbf69cf37b040b2b3d3.tar.gz | |
Update dircondenser.py tool to update paths in test.json as well
Update dircondenser.py tool to update paths appearing in the expected
stdout in test.json when the containing directory is renamed.
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/dircondenser.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/dircondenser.py b/tools/dircondenser.py index 023c14ebc..0e28becca 100755 --- a/tools/dircondenser.py +++ b/tools/dircondenser.py @@ -74,6 +74,10 @@ def condense(dirname: str): #print('git mv "%s" "%s"' % (old_name, new_name)) subprocess.check_call(['git', 'mv', old_name, new_name]) replacements.append((old_name, new_name)) + # update any appearances of old_name in expected stdout in test.json + json = os.path.join(new_name, 'test.json') + if os.path.isfile(json): + replace_source(json, [(old_name, new_name)]) os.chdir(curdir) replace_source('run_unittests.py', replacements) replace_source('run_project_tests.py', replacements) |
