1# UNSUPPORTED: system-freebsd 2 3# This tests that data formatters continue to work when replaying a reproducer. 4 5# RUN: rm -rf %t.repro 6# RUN: %clangxx_host %S/Inputs/foo.cpp -g -o %t.out 7 8# RUN: %lldb -x -b -s %S/Inputs/DataFormatter.in --capture --capture-path %t.repro %t.out | FileCheck %s 9# RUN: %lldb --replay %t.repro | FileCheck %s 10 11# CHECK: stop reason = breakpoint 1.1 12# CHECK: (Foo) foo = (m_i = 0, m_d = 0) 13# CHECK: stop reason = step over 14# CHECK: (Foo) foo = (m_i = 1, m_d = 2) 15# CHECK: Process {{.*}} resuming 16# CHECK: Process {{.*}} exited with status = 0 17