2 # Test suite table for MPI library
5 # suite-name:function-name:description
7 # suite-name The name used to identify this test in mpi-test
8 # function-name The function called to perform this test in mpi-test.c
9 # description A brief description of what the suite tests
11 # ***** BEGIN LICENSE BLOCK *****
12 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
14 # The contents of this file are subject to the Mozilla Public License Version
15 # 1.1 (the "License"); you may not use this file except in compliance with
16 # the License. You may obtain a copy of the License at
17 # http://www.mozilla.org/MPL/
19 # Software distributed under the License is distributed on an "AS IS" basis,
20 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
21 # for the specific language governing rights and limitations under the
24 # The Original Code is the MPI Arbitrary Precision Integer Arithmetic library.
26 # The Initial Developer of the Original Code is
27 # Michael J. Fromberger <sting@linguist.dartmouth.edu>.
28 # Portions created by the Initial Developer are Copyright (C) 1998
29 # the Initial Developer. All Rights Reserved.
33 # Alternatively, the contents of this file may be used under the terms of
34 # either the GNU General Public License Version 2 or later (the "GPL"), or
35 # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
36 # in which case the provisions of the GPL or the LGPL are applicable instead
37 # of those above. If you wish to allow use of your version of this file only
38 # under the terms of either the GPL or the LGPL, and not to allow others to
39 # use your version of this file under the terms of the MPL, indicate your
40 # decision by deleting the provisions above and replace them with the notice
41 # and other provisions required by the GPL or the LGPL. If you do not delete
42 # the provisions above, a recipient may use your version of this file under
43 # the terms of any one of the MPL, the GPL or the LGPL.
45 # ***** END LICENSE BLOCK *****
47 # $Id: test-arrays.txt,v 1.2 2005/02/02 22:28:22 gerv%gerv.net Exp $
49 list:test_list:print out a list of the available test suites
50 copy:test_copy:test assignment of mp-int structures
51 exchange:test_exch:test exchange of mp-int structures
52 zero:test_zero:test zeroing of an mp-int
53 set:test_set:test setting an mp-int to a small constant
54 absolute-value:test_abs:test the absolute value function
55 negate:test_neg:test the arithmetic negation function
56 add-digit:test_add_d:test digit addition
57 add:test_add:test full addition
58 subtract-digit:test_sub_d:test digit subtraction
59 subtract:test_sub:test full subtraction
60 multiply-digit:test_mul_d:test digit multiplication
61 multiply:test_mul:test full multiplication
62 square:test_sqr:test full squaring function
63 divide-digit:test_div_d:test digit division
64 divide-2:test_div_2:test division by two
65 divide-2d:test_div_2d:test division & remainder by 2^d
66 divide:test_div:test full division
67 expt-digit:test_expt_d:test digit exponentiation
68 expt:test_expt:test full exponentiation
69 expt-2:test_2expt:test power-of-two exponentiation
70 square-root:test_sqrt:test integer square root function
71 modulo-digit:test_mod_d:test digit modular reduction
72 modulo:test_mod:test full modular reduction
73 mod-add:test_addmod:test modular addition
74 mod-subtract:test_submod:test modular subtraction
75 mod-multiply:test_mulmod:test modular multiplication
76 mod-square:test_sqrmod:test modular squaring function
77 mod-expt:test_exptmod:test full modular exponentiation
78 mod-expt-digit:test_exptmod_d:test digit modular exponentiation
79 mod-inverse:test_invmod:test modular inverse function
80 compare-digit:test_cmp_d:test digit comparison function
81 compare-zero:test_cmp_z:test zero comparison function
82 compare:test_cmp:test general signed comparison
83 compare-magnitude:test_cmp_mag:test general magnitude comparison
84 parity:test_parity:test parity comparison functions
85 gcd:test_gcd:test greatest common divisor functions
86 lcm:test_lcm:test least common multiple function
87 conversion:test_convert:test general radix conversion facilities
88 binary:test_raw:test raw output format
89 pprime:test_pprime:test probabilistic primality tester
90 fermat:test_fermat:test Fermat pseudoprimality tester