Skip to content

Commit ce88cdf

Browse files
committed
[lld][test] Speculative fix for lld+windows failures
This updates some more places using `%T` to use `%/T` for path normalization. If this does not work, this and r375126 should be reverted together. llvm-svn: 375131
1 parent a660dc5 commit ce88cdf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lld/test/ELF/linkerscript/filename-spec.s

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@
3131

3232
# RUN: echo "SECTIONS{.foo :{ %/T/filename-spec2.o(.foo) %/T/filename-spec1.o(.foo) }}" > %t5.script
3333
# RUN: ld.lld -o %t5 --script %t5.script \
34-
# RUN: %T/filename-spec1.o %T/filename-spec2.o
34+
# RUN: %/T/filename-spec1.o %/T/filename-spec2.o
3535
# RUN: llvm-objdump -s %t5 | FileCheck --check-prefix=SECONDFIRST %s
3636

3737
# RUN: echo "SECTIONS{.foo :{ %/T/filename-spec1.o(.foo) %/T/filename-spec2.o(.foo) }}" > %t6.script
3838
# RUN: ld.lld -o %t6 --script %t6.script \
39-
# RUN: %T/filename-spec1.o %T/filename-spec2.o
39+
# RUN: %/T/filename-spec1.o %/T/filename-spec2.o
4040
# RUN: llvm-objdump -s %t6 | FileCheck --check-prefix=FIRSTY %s
4141

4242
# RUN: mkdir -p %t.testdir1 %t.testdir2

0 commit comments

Comments
 (0)