mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-08-20 13:24:09 -07:00
RethinkDB native connector work, minor fixes.
This commit is contained in:
parent
a6203ed038
commit
4e88c80a22
219 changed files with 33295 additions and 0 deletions
11
ext/librethinkdbxx/test/gen_index_cxx.py
Normal file
11
ext/librethinkdbxx/test/gen_index_cxx.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
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("}")
|
Loading…
Add table
Add a link
Reference in a new issue