The test was being skipped on the Windwos bot because it requires Python which was silently disabled because of a configuration issue. Now that the test runs, this fails as expected.
16 lines
617 B
Plaintext
16 lines
617 B
Plaintext
# REQUIRES: python
|
|
# UNSUPPORTED: system-windows
|
|
# 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
|