mirror of https://github.com/pybind/pybind11
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
819 B
30 lines
819 B
from __future__ import annotations |
|
|
|
import pytest |
|
|
|
from pybind11_tests import scoped_critical_section as m |
|
|
|
|
|
def test_nullptr_combinations(): |
|
m.test_one_nullptr() |
|
m.test_two_nullptrs() |
|
m.test_first_nullptr() |
|
m.test_second_nullptr() |
|
|
|
|
|
@pytest.mark.skipif(not m.has_barrier, reason="no <barrier>") |
|
def test_scoped_critical_section() -> None: |
|
for _ in range(64): |
|
m.test_scoped_critical_section() |
|
|
|
|
|
@pytest.mark.skipif(not m.has_barrier, reason="no <barrier>") |
|
def test_scoped_critical_section2() -> None: |
|
for _ in range(64): |
|
m.test_scoped_critical_section2() |
|
|
|
|
|
@pytest.mark.skipif(not m.has_barrier, reason="no <barrier>") |
|
def test_scoped_critical_section2_same_object_no_deadlock() -> None: |
|
for _ in range(64): |
|
m.test_scoped_critical_section2_same_object_no_deadlock()
|
|
|