You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
868 B
31 lines
868 B
// 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}}
|
|
}]}) */
|