mirror of
https://github.com/circify/circ.git
synced 2026-04-21 03:00:54 -04:00
35 lines
819 B
Python
Executable File
35 lines
819 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from util import run_tests
|
|
from test_suite import *
|
|
|
|
if __name__ == "__main__":
|
|
tests = arithmetic_tests + \
|
|
mod_tests + \
|
|
arithmetic_boolean_tests + \
|
|
nary_arithmetic_tests + \
|
|
bitwise_tests + \
|
|
boolean_tests + \
|
|
nary_boolean_tests + \
|
|
const_arith_tests + \
|
|
const_bool_tests + \
|
|
ite_tests + \
|
|
shift_tests + \
|
|
div_tests + \
|
|
array_tests + \
|
|
struct_tests + \
|
|
matrix_tests + \
|
|
ptr_tests + \
|
|
c_array_tests + \
|
|
c_misc_tests + \
|
|
biomatch_tests + \
|
|
kmeans_tests + \
|
|
kmeans_tests_2
|
|
# db_tests
|
|
# gauss_tests + \
|
|
|
|
# TODO: add support for return value - int promotion
|
|
# unsigned_arithmetic_tests + \
|
|
|
|
run_tests('c', tests)
|