blob: faad72a85eddbf13104cd29df3ec16830e5ffd08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// 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='stop')
// DexExpectWatchValue('S::TestCharA', 97, on_line='stop')
// DexExpectWatchValue('ENUM_NEG', -2147000000, on_line='stop')
/* DexExpectProgramState({'frames': [{
'location': {'lineno' : 'stop'},
'watches': {'ENUM_POS' : {'is_irretrievable': True}}
}]}) */
|