hanchenye-llvm-project/lldb/lit/Expr/TestCallStdStringFunction.test

15 lines
293 B
Plaintext

# XFAIL: windows
# -> llvm.org/pr21765
# XFAIL: freebsd
# -> llvm.org/pr17807
# RUN: %cxx %p/Inputs/call-function.cpp -g -o %t && %lldb -b -s %s -- %t | FileCheck %s
breakpoint set --file call-function.cpp --line 52
run
print str
# CHECK: Hello world
print str.c_str()
# CHECK: Hello world