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.
22 lines
798 B
C++
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)
|