2018-04-25 21:21:58 +02:00
|
|
|
# Stint
|
2023-07-07 12:56:30 +07:00
|
|
|
# Copyright 2018-2023 Status Research & Development GmbH
|
2018-03-02 11:48:08 +01: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 15:01:08 +01:00
|
|
|
|
2023-06-14 09:41:01 +07:00
|
|
|
{. warning[UnusedImport]:off .}
|
|
|
|
|
2023-06-14 08:06:44 +07:00
|
|
|
import
|
2023-06-12 21:07:15 +07:00
|
|
|
test_uint_addsub,
|
|
|
|
test_uint_bitops2,
|
|
|
|
test_uint_bitwise,
|
|
|
|
test_uint_comparison,
|
2023-06-14 08:06:44 +07:00
|
|
|
test_uint_divmod,
|
2023-06-12 21:07:15 +07:00
|
|
|
test_uint_endianness,
|
2023-06-14 08:06:44 +07:00
|
|
|
test_uint_endians2,
|
2023-06-12 21:07:15 +07:00
|
|
|
test_uint_exp,
|
2023-06-14 08:06:44 +07:00
|
|
|
test_uint_modular_arithmetic,
|
2023-06-12 21:07:15 +07:00
|
|
|
test_uint_mul
|
2018-04-25 21:21:58 +02:00
|
|
|
|
2023-06-14 08:06:44 +07:00
|
|
|
import
|
2023-06-13 22:17:43 +07:00
|
|
|
test_int_signedness,
|
|
|
|
test_int_initialization,
|
|
|
|
test_int_comparison,
|
|
|
|
test_int_bitwise,
|
|
|
|
test_int_addsub,
|
2023-06-14 08:06:44 +07:00
|
|
|
test_int_endianness,
|
2023-06-14 09:41:01 +07:00
|
|
|
test_int_muldiv,
|
|
|
|
test_int_exp
|
2023-06-14 08:06:44 +07:00
|
|
|
|
2023-06-14 22:26:44 +07:00
|
|
|
import
|
2023-06-20 14:59:26 +07:00
|
|
|
test_io,
|
2023-06-23 07:46:16 +07:00
|
|
|
test_conversion,
|
2023-07-07 12:56:30 +07:00
|
|
|
t_randomized_divmod,
|
2023-07-07 13:22:22 +07:00
|
|
|
test_bugfix,
|
|
|
|
test_features
|
2023-07-07 08:59:38 +07:00
|
|
|
|
2024-11-25 14:17:39 +01:00
|
|
|
when defined(cpp) and not defined(unittest2Static):
|
2023-07-07 08:59:38 +07:00
|
|
|
import
|
|
|
|
test_vs_intx
|