(cls, **kwargs)
| 1838 | |
| 1839 | @classmethod |
| 1840 | def get_default_variation(cls, **kwargs): |
| 1841 | return super().get_default_variation( |
| 1842 | malloc=settings.MALLOC, |
| 1843 | is_debug=settings.ASSERTIONS, |
| 1844 | is_tracing=settings.EMSCRIPTEN_TRACING, |
| 1845 | memvalidate='memvalidate' in settings.MALLOC, |
| 1846 | verbose='verbose' in settings.MALLOC, |
| 1847 | **kwargs, |
| 1848 | ) |
| 1849 | |
| 1850 | @classmethod |
| 1851 | def variations(cls): |
nothing calls this directly
no test coverage detected