Skip to content

Commit

Permalink
Revert "[Utils] Fix %S substitution"
Browse files Browse the repository at this point in the history
This reverts commit 8ee1ef2.

This breaks an update_cc_test_checks test that is based on an
incorrect %S use, revert until I can fix it.
  • Loading branch information
nikic committed Mar 21, 2022
1 parent afb9cbb commit 7af5fc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/utils/update_cc_test_checks.py
Expand Up @@ -241,7 +241,7 @@ def main():
subs = {
'%s' : ti.path,
'%t' : tempfile.NamedTemporaryFile().name,
'%S' : os.path.dirname(ti.path),
'%S' : os.getcwd(),
}

for l in ti.run_lines:
Expand Down

0 comments on commit 7af5fc1

Please sign in to comment.