michael@0: # michael@0: # Test suite table for MPI library michael@0: # michael@0: # Format of entries: michael@0: # suite-name:function-name:description michael@0: # michael@0: # suite-name The name used to identify this test in mpi-test michael@0: # function-name The function called to perform this test in mpi-test.c michael@0: # description A brief description of what the suite tests michael@0: michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: list:test_list:print out a list of the available test suites michael@0: copy:test_copy:test assignment of mp-int structures michael@0: exchange:test_exch:test exchange of mp-int structures michael@0: zero:test_zero:test zeroing of an mp-int michael@0: set:test_set:test setting an mp-int to a small constant michael@0: absolute-value:test_abs:test the absolute value function michael@0: negate:test_neg:test the arithmetic negation function michael@0: add-digit:test_add_d:test digit addition michael@0: add:test_add:test full addition michael@0: subtract-digit:test_sub_d:test digit subtraction michael@0: subtract:test_sub:test full subtraction michael@0: multiply-digit:test_mul_d:test digit multiplication michael@0: multiply:test_mul:test full multiplication michael@0: square:test_sqr:test full squaring function michael@0: divide-digit:test_div_d:test digit division michael@0: divide-2:test_div_2:test division by two michael@0: divide-2d:test_div_2d:test division & remainder by 2^d michael@0: divide:test_div:test full division michael@0: expt-digit:test_expt_d:test digit exponentiation michael@0: expt:test_expt:test full exponentiation michael@0: expt-2:test_2expt:test power-of-two exponentiation michael@0: square-root:test_sqrt:test integer square root function michael@0: modulo-digit:test_mod_d:test digit modular reduction michael@0: modulo:test_mod:test full modular reduction michael@0: mod-add:test_addmod:test modular addition michael@0: mod-subtract:test_submod:test modular subtraction michael@0: mod-multiply:test_mulmod:test modular multiplication michael@0: mod-square:test_sqrmod:test modular squaring function michael@0: mod-expt:test_exptmod:test full modular exponentiation michael@0: mod-expt-digit:test_exptmod_d:test digit modular exponentiation michael@0: mod-inverse:test_invmod:test modular inverse function michael@0: compare-digit:test_cmp_d:test digit comparison function michael@0: compare-zero:test_cmp_z:test zero comparison function michael@0: compare:test_cmp:test general signed comparison michael@0: compare-magnitude:test_cmp_mag:test general magnitude comparison michael@0: parity:test_parity:test parity comparison functions michael@0: gcd:test_gcd:test greatest common divisor functions michael@0: lcm:test_lcm:test least common multiple function michael@0: conversion:test_convert:test general radix conversion facilities michael@0: binary:test_raw:test raw output format michael@0: pprime:test_pprime:test probabilistic primality tester michael@0: fermat:test_fermat:test Fermat pseudoprimality tester