diff options
Diffstat (limited to '')
-rwxr-xr-x | src/test/generate-sym-test.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/test/generate-sym-test.py b/src/test/generate-sym-test.py new file mode 100755 index 0000000..8ed4d26 --- /dev/null +++ b/src/test/generate-sym-test.py @@ -0,0 +1,36 @@ +#!/usr/bin/env python3 +# SPDX-License-Identifier: LGPL-2.1-or-later + +import sys, re + +print('#include <stdio.h>') +for header in sys.argv[2:]: + print('#include "{}"'.format(header.split('/')[-1])) + +print(''' +/* We want to check deprecated symbols too, without complaining */ +#pragma GCC diagnostic ignored "-Wdeprecated-declarations" + +const struct { + const char *name; + const void *symbol; +} symbols[] = {''') + +count = 0 +for line in open(sys.argv[1]): + match = re.search('^ +([a-zA-Z0-9_]+);', line) + if match: + s = match.group(1) + if s == 'sd_bus_object_vtable_format': + print(f' {{"{s}", &{s}}},') + else: + print(f' {{"{s}", {s}}},') + count += 1 + +print(f'''}}; + +int main(void) {{ + for (size_t i = 0; i < {count}; i++) + printf("%p: %s\\n", symbols[i].symbol, symbols[i].name); + return 0; +}}''') |