Files
clang-p2996/lldb/test/Shell/Reproducer/TestSynchronous.test
Jonas Devlieghere ae37e2285d [lldb/Reproducers] Mark reproducer test directory as unsupported on Windows
Reproducers are unsupported on Windows. Rather than having a UNSUPPORTED
line in every test, just skip the whole subdirectory.
2020-03-23 09:54:11 -07:00

15 lines
587 B
Plaintext

# REQUIRES: python
# Ensure that replay happens in synchronous mode.
# RUN: rm -rf %t.repro
# RUN: %lldb -x -b --capture --capture-path %t.repro -o 'script lldb.debugger.SetAsync(True)' -o 'script lldb.debugger.GetAsync()' -o 'reproducer generate' | FileCheck %s --check-prefix CAPTURE
# RUN: %lldb --replay %t.repro | FileCheck %s --check-prefix REPLAY
# CAPTURE: script lldb.debugger.SetAsync(True)
# CAPTURE-NEXT: script lldb.debugger.GetAsync()
# CAPTURE-NEXT: True
# REPLAY: script lldb.debugger.SetAsync(True)
# REPLAY-NEXT: script lldb.debugger.GetAsync()
# REPLAY-NEXT: False