(self)
| 55 | self.test_wmi_query_error() |
| 56 | |
| 57 | def test_wmi_query_not_select(self): |
| 58 | # Queries other than SELECT are blocked to avoid potential exploits |
| 59 | with self.assertRaises(ValueError): |
| 60 | wmi_exec_query("not select, just in case someone tries something") |
| 61 | |
| 62 | @support.requires_resource('cpu') |
| 63 | def test_wmi_query_overflow(self): |
nothing calls this directly
no test coverage detected