mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-07-14 00:53:21 -07:00
11 lines
293 B
Python
11 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("}")
|