summaryrefslogtreecommitdiff
path: root/tests/unit/misc/test_guiprocess.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/misc/test_guiprocess.py')
-rw-r--r--tests/unit/misc/test_guiprocess.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/misc/test_guiprocess.py b/tests/unit/misc/test_guiprocess.py
index 198da81e0..dac4733a0 100644
--- a/tests/unit/misc/test_guiprocess.py
+++ b/tests/unit/misc/test_guiprocess.py
@@ -443,15 +443,15 @@ def test_exit_unsuccessful(qtbot, proc, message_mock, py_proc, caplog):
assert not proc.outcome.was_successful()
+@pytest.mark.posix # Seems to be a normal exit on Windows
@pytest.mark.parametrize("signal, message, state_str, verbose", [
- pytest.param(
+ (
signal.SIGSEGV,
"Testprocess crashed with status 11 (SIGSEGV).",
"crashed",
False,
- marks=pytest.mark.posix # Can't seem to simulate a crash on Windows
),
- pytest.param(
+ (
signal.SIGTERM,
"Testprocess terminated with status 15 (SIGTERM).",
"terminated",