mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-15 22:46:32 +00:00

This patch replaces invocations of clang with clang++ for a set of c++ files in the dexter cross-project tests. As a small additional change, this patch removes -lstdc++ from a test that did not appear to require it.
17 lines
513 B
C++
17 lines
513 B
C++
// This test started failing recently for unknown reasons.
|
|
// XFAIL:*
|
|
// RUN: %dexter_regression_test_cxx_build \
|
|
// RUN: -fdebug-prefix-map=%S=/changed %s -o %t
|
|
// RUN: %dexter --fail-lt 1.0 -w \
|
|
// RUN: --binary %t \
|
|
// RUN: --debugger %dexter_regression_test_debugger \
|
|
// RUN: --source-root-dir=%S --debugger-use-relative-paths -- %s
|
|
|
|
#include <stdio.h>
|
|
int main() {
|
|
int x = 42;
|
|
printf("hello world: %d\n", x); // DexLabel('check')
|
|
}
|
|
|
|
// DexExpectWatchValue('x', 42, on_line=ref('check'))
|