(self)
| 926 | super().__init__(**kwargs) |
| 927 | |
| 928 | def get_cflags(self): |
| 929 | cflags = super().get_cflags() |
| 930 | if self.is_asan: |
| 931 | cflags += ['-fsanitize=address'] |
| 932 | return cflags |
| 933 | |
| 934 | def get_base_name(self): |
| 935 | name = super().get_base_name() |
nothing calls this directly
no test coverage detected