Skip tests that require remote subprocess debugging permissions. This also implies subprocess support, so no need to use both @requires_subprocess() and @requires_remote_subprocess_debugging().
()
| 731 | |
| 732 | |
| 733 | def requires_remote_subprocess_debugging(): |
| 734 | """Skip tests that require remote subprocess debugging permissions. |
| 735 | |
| 736 | This also implies subprocess support, so no need to use both |
| 737 | @requires_subprocess() and @requires_remote_subprocess_debugging(). |
| 738 | """ |
| 739 | if not has_subprocess_support: |
| 740 | return unittest.skip("requires subprocess support") |
| 741 | return unittest.skipUnless( |
| 742 | has_remote_subprocess_debugging(), |
| 743 | "requires remote subprocess debugging permissions" |
| 744 | ) |
| 745 | |
| 746 | |
| 747 | # Does strftime() support glibc extension like '%4Y'? |
nothing calls this directly
no test coverage detected
searching dependent graphs…