This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/ext/librethinkdbxx/test/gen_index_cxx.py
2017-11-02 07:05:11 -07:00

12 lines
293 B
Python

from sys import argv
from re import sub
print("#include \"testlib.h\"");
print("void run_upstream_tests() {")
for path in argv[1:]:
name = sub('/', '_', path.split('.')[0])
print(" extern void %s();" % name)
print(" clean_slate();")
print(" %s();" % name)
print("}")