
This patch works towards consolidating all Clang debug-info into the `clang/test/DebugInfo` directory (https://discourse.llvm.org/t/clang-test-location-of-clang-debug-info-tests/87958). Here we move only the `clang/test/CodeGen` tests. The list of files i came up with is: 1. searched for anything with `*debug-info*` in the filename 2. searched for occurrences of `debug-info-kind` in the tests I created a couple of subdirectories in `clang/test/DebugInfo` where I thought it made sense (mostly when the tests were target-specific). There's a couple of tests in `clang/test/CodeGen` that still set `-debug-info-kind`. They probably don't need to do that, but I'm not changing that as part of this PR.
48 lines
2.6 KiB
C
48 lines
2.6 KiB
C
// REQUIRES: x86-registered-target
|
|
// RUN: %clang_cl --target=i686-windows-msvc /c /Z7 /Fo%t.obj -- %s
|
|
// RUN: llvm-pdbutil dump --types %t.obj | FileCheck %s
|
|
// RUN: %clang_cl -gcodeview-command-line --target=i686-windows-msvc /c /Z7 /Fo%t.obj -- %s
|
|
// RUN: llvm-pdbutil dump --types %t.obj | FileCheck %s
|
|
// RUN: %clang_cl --target=i686-windows-msvc /c /Z7 /Fo%t.obj -fdebug-compilation-dir=. -- %s
|
|
// RUN: llvm-pdbutil dump --types %t.obj | FileCheck %s --check-prefix RELATIVE
|
|
// RUN: %clang_cl -gno-codeview-command-line --target=i686-windows-msvc /c /Z7 /Fo%t.obj -- %s
|
|
// RUN: llvm-pdbutil dump --types %t.obj | FileCheck %s --check-prefix DISABLE
|
|
|
|
// -fmessage-length shouldn't be included in the command line since it breaks reproducibility
|
|
// RUN: %clang_cl -gcodeview-command-line --target=i686-windows-msvc -Xclang -fmessage-length=100 /c /Z7 /Fo%t.obj -- %s
|
|
// RUN: llvm-pdbutil dump --types %t.obj | FileCheck %s --check-prefix MESSAGELEN
|
|
|
|
int main(void) { return 42; }
|
|
|
|
// CHECK: Types (.debug$T)
|
|
// CHECK: ============================================================
|
|
// CHECK: 0x[[PWD:.+]] | LF_STRING_ID [size = {{.+}}] ID: <no type>, String: [[PWDVAL:.+]]
|
|
// CHECK: 0x[[FILEPATH:.+]] | LF_STRING_ID [size = {{.+}}] ID: <no type>, String: [[FILEPATHVAL:.+[\\/]codeview-buildinfo.c]]
|
|
// CHECK: 0x[[ZIPDB:.+]] | LF_STRING_ID [size = {{.+}}] ID: <no type>, String:
|
|
// CHECK: 0x[[TOOL:.+]] | LF_STRING_ID [size = {{.+}}] ID: <no type>, String: [[TOOLVAL:.+[\\/][clang|llvm].*]]
|
|
// CHECK: 0x[[CMDLINE:.+]] | LF_STRING_ID [size = {{.+}}] ID: <no type>, String: "-cc1
|
|
// CHECK: 0x{{.+}} | LF_BUILDINFO [size = {{.+}}]
|
|
// CHECK-NEXT: 0x[[PWD]]: `[[PWDVAL]]`
|
|
// CHECK-NEXT: 0x[[TOOL]]: `[[TOOLVAL]]`
|
|
// CHECK-NEXT: 0x[[FILEPATH]]: `[[FILEPATHVAL]]`
|
|
// CHECK-NEXT: 0x[[ZIPDB]]: ``
|
|
// CHECK-NEXT: 0x[[CMDLINE]]: `"-cc1
|
|
|
|
// RELATIVE: Types (.debug$T)
|
|
// RELATIVE: ============================================================
|
|
// RELATIVE: 0x{{.+}} | LF_BUILDINFO [size = {{.+}}]
|
|
// RELATIVE: 0x{{.+}}: `.`
|
|
|
|
// DISABLE-NOT: "-cc1"
|
|
// DISABLE: 0x{{.+}} | LF_BUILDINFO [size = {{.+}}]
|
|
// DISABLE-NEXT: 0x{{.+}}: `{{.*}}`
|
|
// DISABLE-NEXT: 0x{{.+}}: `{{.*}}`
|
|
// DISABLE-NEXT: 0x{{.+}}: `{{.*}}`
|
|
// DISABLE-NEXT: 0x{{.+}}: ``
|
|
// DISABLE-NEXT: 0x{{.+}}: `{{.*}}`
|
|
|
|
// MESSAGELEN: Types (.debug$T)
|
|
// MESSAGELEN: ============================================================
|
|
// MESSAGELEN: 0x{{.+}} | LF_BUILDINFO [size = {{.+}}]
|
|
// MESSAGELEN-NOT: -fmessage-length
|