This test is consistently reporting unexpected pass for me, and the expectedFailure decorator was removed from the legacy test in r310626. Apply the same change to the lit version of this test. Will investigate further if this fails once the new buildbot is running tests. llvm.org/pr17807 llvm-svn: 325856
12 lines
253 B
Plaintext
12 lines
253 B
Plaintext
# XFAIL: windows
|
|
# -> llvm.org/pr21765
|
|
|
|
# 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
|