2018-04-25 19:21:58 +00:00
|
|
|
# Stint
|
2023-07-07 05:56:30 +00:00
|
|
|
# Copyright 2018-2023 Status Research & Development GmbH
|
2018-03-02 10:48:08 +00:00
|
|
|
# Licensed under either of
|
|
|
|
#
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
|
|
|
|
#
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
2018-02-15 14:01:08 +00:00
|
|
|
|
2023-06-14 02:41:01 +00:00
|
|
|
{. warning[UnusedImport]:off .}
|
|
|
|
|
2023-06-14 01:06:44 +00:00
|
|
|
import
|
2023-06-12 14:07:15 +00:00
|
|
|
test_uint_addsub,
|
|
|
|
test_uint_bitops2,
|
|
|
|
test_uint_bitwise,
|
|
|
|
test_uint_comparison,
|
2023-06-14 01:06:44 +00:00
|
|
|
test_uint_divmod,
|
2023-06-12 14:07:15 +00:00
|
|
|
test_uint_endianness,
|
2023-06-14 01:06:44 +00:00
|
|
|
test_uint_endians2,
|
2023-06-12 14:07:15 +00:00
|
|
|
test_uint_exp,
|
2023-06-14 01:06:44 +00:00
|
|
|
test_uint_modular_arithmetic,
|
2023-06-12 14:07:15 +00:00
|
|
|
test_uint_mul
|
2018-04-25 19:21:58 +00:00
|
|
|
|
2023-06-14 01:06:44 +00:00
|
|
|
import
|
2023-06-13 15:17:43 +00:00
|
|
|
test_int_signedness,
|
|
|
|
test_int_initialization,
|
|
|
|
test_int_comparison,
|
|
|
|
test_int_bitwise,
|
|
|
|
test_int_addsub,
|
2023-06-14 01:06:44 +00:00
|
|
|
test_int_endianness,
|
2023-06-14 02:41:01 +00:00
|
|
|
test_int_muldiv,
|
|
|
|
test_int_exp
|
2023-06-14 01:06:44 +00:00
|
|
|
|
2023-06-14 15:26:44 +00:00
|
|
|
import
|
2023-06-20 07:59:26 +00:00
|
|
|
test_io,
|
2023-06-23 00:46:16 +00:00
|
|
|
test_conversion,
|
2023-07-07 05:56:30 +00:00
|
|
|
t_randomized_divmod,
|
2023-07-07 06:22:22 +00:00
|
|
|
test_bugfix,
|
|
|
|
test_features
|
2023-07-07 01:59:38 +00:00
|
|
|
|
|
|
|
when defined(cpp):
|
|
|
|
import
|
|
|
|
test_vs_intx
|