Files
clang-p2996/cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_syntax.cpp
Stephen Tozer b8fc288c46 [Dexter] Replace clang with clang++ in various cross project tests (#65987)
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.
2025-04-03 15:37:43 +01:00

22 lines
798 B
C++

// Purpose:
// Check that parsing bad commands gives a useful error.
// - Syntax error (misplaced ',')
// Check directives are in check.txt to prevent dexter reading any embedded
// commands.
//
// Note: Despite using 'lldb' as the debugger, lldb is not actually required
// as the test should finish before lldb would be invoked.
//
// RUN: %dexter_regression_test_cxx_build %s -o %t
// RUN: not %dexter_base test --binary %t --debugger "lldb" \
// RUN: -v -- %s | FileCheck %s --match-full-lines --strict-whitespace
//
// CHECK:parser error:{{.*}}err_syntax.cpp(21): invalid syntax
// CHECK:// {{Dex}}ExpectWatchValue(,'a', 3, 3, 3, 3, on_line=0)
// CHECK: ^
int main(){
return 0;
}
// DexExpectWatchValue(,'a', 3, 3, 3, 3, on_line=0)