%T has been deprecated for about seven years, mostly because it is not unique to each test which can lead to races. This patch updates the few remaining tests in lldb that use %T to not use it (either directly using files or creating their own temp dir). The eventual goal is to remove support for %T from llvm-lit given few tests use it and it still has racey behavior. This patch errors on the side of creating new temp dirs even when not strictly necessary to avoid needing to update filenames inside filecheck matchers.
19 lines
723 B
Plaintext
19 lines
723 B
Plaintext
# Test that we do something reasonable if a LINE record references a
|
|
# non-existing FILE record.
|
|
# Right now, "something reasonable" means creating a line entry with an empty
|
|
# file.
|
|
|
|
# RUN: mkdir -p %t.dir
|
|
# RUN: yaml2obj %S/Inputs/basic-elf.yaml -o %t.dir/line-table-missing-file.out
|
|
# RUN: %lldb %t.dir/line-table-missing-file.out \
|
|
# RUN: -o "target symbols add -s line-table-missing-file.out %S/Inputs/line-table-missing-file.syms" \
|
|
# RUN: -s %s -o exit | FileCheck %s
|
|
|
|
image dump line-table a.c
|
|
# CHECK-LABEL: Line table for /tmp/a.c
|
|
# CHECK-NEXT: 0x00000000004000b0: /tmp/a.c:1
|
|
# CHECK-NEXT: 0x00000000004000b1: /tmp/a.c:2
|
|
# CHECK-NEXT: 0x00000000004000b2: :2
|
|
# CHECK-NEXT: 0x00000000004000b3:
|
|
# CHECK-EMPTY:
|