Re-application of the Dexter builder removal reversed due to continued
errors on the green dragon LLDB buildbot:
https://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake/59716/
Cause of the error is unclear, but it looks as though there is some
unexpected non-determinism in the test failures.
This reverts commit 323270451d.
14 lines
340 B
C
14 lines
340 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
|
|
|
|
#include <stdio.h>
|
|
int main() {
|
|
printf("hello world\n");
|
|
int x = 42;
|
|
__debugbreak(); // DexLabel('stop')
|
|
}
|
|
|
|
// DexExpectWatchValue('x', 42, on_line=ref('stop'))
|