Skip to content

Commit 8f0c53d

Browse files
authored
[ATfE] Replace %T substitution (#586)
Support for the `%T` temp dir substitution is being removed from lit. The libc++ testing format is instead introducing `%{temp}` to replace it, and the downstream test configurations need updating to match. For reference, see: llvm/llvm-project#160026 llvm/llvm-project#162323
1 parent fe12493 commit 8f0c53d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

arm-software/embedded/arm-runtimes/test-support/llvm-libc++-picolibc.cfg.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ config.substitutions.append(('%{link_flags}',
3131
' %{libc-extra-link-flags}'
3232
))
3333
config.substitutions.append(('%{exec}',
34-
'%{executor} --execdir %T -- '
34+
'%{executor} --execdir %{temp} -- '
3535
))
3636

3737
# Long tests are prohibitively slow when run via emulation.

arm-software/embedded/arm-runtimes/test-support/llvm-libc++abi-picolibc.cfg.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ config.substitutions.append(('%{link_flags}',
2323
' %{libc-extra-link-flags}'
2424
))
2525
config.substitutions.append(('%{exec}',
26-
'%{executor} --execdir %T -- '
26+
'%{executor} --execdir %{temp} -- '
2727
))
2828

2929
import os, site

arm-software/embedded/arm-runtimes/test-support/llvm-libunwind-picolibc.cfg.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ config.substitutions.append(('%{link_flags}',
3636
' %{libc-extra-link-flags}'
3737
))
3838
config.substitutions.append(('%{exec}',
39-
'%{executor} --execdir %T -- '
39+
'%{executor} --execdir %{temp} -- '
4040
))
4141

4242
import os, site

0 commit comments

Comments
 (0)