Files
clang-p2996/cross-project-tests/debuginfo-tests/dexter-tests/global-constant.cpp
James Henderson 1364750dad [RFC][debuginfo-test] Rename debug-info lit tests for general purposes
Discussion thread:
https://lists.llvm.org/pipermail/llvm-dev/2021-January/148048.html

Move debuginfo-test into a subdirectory of a new top-level directory,
called cross-project-tests. The new name replaces "debuginfo-test" as an
LLVM project enabled via LLVM_ENABLE_PROJECTS.

Differential Revision: https://reviews.llvm.org/D95339

Reviewed by: aprantl
2021-06-28 11:31:40 +01:00

31 lines
888 B
C++

// REQUIRES: system-windows
//
// RUN: %dexter --fail-lt 1.0 -w --builder 'clang-cl_vs2015' \
// RUN: --debugger 'dbgeng' --cflags '/Z7 /Zi' --ldflags '/Z7 /Zi' -- %s
// Check that global constants have debug info.
const float TestPi = 3.14;
struct S {
static const char TestCharA = 'a';
};
enum TestEnum : int {
ENUM_POS = 2147000000,
ENUM_NEG = -2147000000,
};
void useConst(int) {}
int main() {
useConst(TestPi);
useConst(S::TestCharA);
useConst(ENUM_NEG); // DexLabel('stop')
return 0;
}
// DexExpectWatchValue('TestPi', 3.140000104904175, on_line=ref('stop'))
// DexExpectWatchValue('S::TestCharA', 97, on_line=ref('stop'))
// DexExpectWatchValue('ENUM_NEG', -2147000000, on_line=ref('stop'))
/* DexExpectProgramState({'frames': [{
'location': {'lineno' : ref('stop')},
'watches': {'ENUM_POS' : {'is_irretrievable': True}}
}]}) */