Skip to content

Commit 040f6ce

Browse files
committed
py: add tests for unsigned integer type
Signed-off-by: rivudhk <rivudhkr@gmail.com>
1 parent ad5b733 commit 040f6ce

File tree

4 files changed

+1579
-0
lines changed

4 files changed

+1579
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
## Add here import statements for all files with tests
2+
3+
from tests.runtime_aggtest.aggtst_base import * # noqa: F403
4+
from tests.runtime_aggtest.atest_run import run # noqa: F403
5+
from test_un_int_arith_fn import * # noqa: F403
6+
from test_un_int_supported_functions import * # noqa: F403
7+
from test_un_int_tbl import * # noqa: F403
8+
9+
10+
def main():
11+
run("un_int_tests", "un_int_")
12+
13+
14+
if __name__ == "__main__":
15+
main()

0 commit comments

Comments
 (0)