Files
circ/scripts/aby_tests/c_bench_aby.py
2022-03-22 18:58:01 -04:00

19 lines
330 B
Python
Executable File

#!/usr/bin/env python
import os
from util import run_tests
from test_suite import *
ABY_SOURCE = os.getenv("ABY_SOURCE")
if __name__ == "__main__":
tests = [[
"loop add",
3,
ABY_SOURCE+"/build/bin/2pc_loop_add",
{"a": 1, "b": 0},
{"a": 0, "b": 2},
]]
run_tests('c', tests)