[mlir] More fixes for 9fddaf6b14102963f12dbb9730f101fc52e662c1
[llvm-project.git] / cross-project-tests / debuginfo-tests / dexter / feature_tests / subtools / test / source-root-dir.cpp
blob36db3eb3b2750d9b78066e2d739fe496db56d448
1 // This test started failing recently for unknown reasons.
2 // XFAIL:*
3 // RUN: %dexter_regression_test_build \
4 // RUN: -fdebug-prefix-map=%S=/changed %s -o %t
5 // RUN: %dexter --fail-lt 1.0 -w \
6 // RUN: --binary %t \
7 // RUN: --debugger %dexter_regression_test_debugger \
8 // RUN: --source-root-dir=%S --debugger-use-relative-paths -- %s
10 #include <stdio.h>
11 int main() {
12 int x = 42;
13 printf("hello world: %d\n", x); // DexLabel('check')
16 // DexExpectWatchValue('x', 42, on_line=ref('check'))