Return cpu architecture.
()
| 221 | |
| 222 | |
| 223 | def get_cpu_arch(): |
| 224 | """Return cpu architecture.""" |
| 225 | if is_android(): |
| 226 | # FIXME: Handle this import in a cleaner way. |
| 227 | from clusterfuzz._internal.platforms import android |
| 228 | return android.settings.get_cpu_arch() |
| 229 | |
| 230 | # FIXME: Add support for desktop architectures as needed. |
| 231 | return None |
| 232 | |
| 233 | |
| 234 | def get_current_memory_tool_var(): |
nothing calls this directly
no test coverage detected