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.
14 lines
335 B
14 lines
335 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
|
|
|
|
#include <stdio.h>
|
|
int main() {
|
|
printf("hello world\n");
|
|
int x = 42;
|
|
__debugbreak(); // DexLabel('stop')
|
|
}
|
|
|
|
// DexExpectWatchValue('x', 42, on_line='stop')
|