1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
|
/*
* test-info.c
*
* Arbitrary precision integer arithmetic library
*
* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is the MPI Arbitrary Precision Integer Arithmetic library.
*
* The Initial Developer of the Original Code is
* Michael J. Fromberger.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
/* $Id: test-info.c,v 1.3 2004/04/27 23:04:36 gerv%gerv.net Exp $ */
/* Table mapping test suite names to index numbers */
const int g_count = 42;
const char *g_names[] = {
"list", /* print out a list of the available test suites */
"copy", /* test assignment of mp-int structures */
"exchange", /* test exchange of mp-int structures */
"zero", /* test zeroing of an mp-int */
"set", /* test setting an mp-int to a small constant */
"absolute-value", /* test the absolute value function */
"negate", /* test the arithmetic negation function */
"add-digit", /* test digit addition */
"add", /* test full addition */
"subtract-digit", /* test digit subtraction */
"subtract", /* test full subtraction */
"multiply-digit", /* test digit multiplication */
"multiply", /* test full multiplication */
"square", /* test full squaring function */
"divide-digit", /* test digit division */
"divide-2", /* test division by two */
"divide-2d", /* test division & remainder by 2^d */
"divide", /* test full division */
"expt-digit", /* test digit exponentiation */
"expt", /* test full exponentiation */
"expt-2", /* test power-of-two exponentiation */
"square-root", /* test integer square root function */
"modulo-digit", /* test digit modular reduction */
"modulo", /* test full modular reduction */
"mod-add", /* test modular addition */
"mod-subtract", /* test modular subtraction */
"mod-multiply", /* test modular multiplication */
"mod-square", /* test modular squaring function */
"mod-expt", /* test full modular exponentiation */
"mod-expt-digit", /* test digit modular exponentiation */
"mod-inverse", /* test modular inverse function */
"compare-digit", /* test digit comparison function */
"compare-zero", /* test zero comparison function */
"compare", /* test general signed comparison */
"compare-magnitude", /* test general magnitude comparison */
"parity", /* test parity comparison functions */
"gcd", /* test greatest common divisor functions */
"lcm", /* test least common multiple function */
"conversion", /* test general radix conversion facilities */
"binary", /* test raw output format */
"pprime", /* test probabilistic primality tester */
"fermat" /* test Fermat pseudoprimality tester */
};
/* Test function prototypes */
int test_list(void);
int test_copy(void);
int test_exch(void);
int test_zero(void);
int test_set(void);
int test_abs(void);
int test_neg(void);
int test_add_d(void);
int test_add(void);
int test_sub_d(void);
int test_sub(void);
int test_mul_d(void);
int test_mul(void);
int test_sqr(void);
int test_div_d(void);
int test_div_2(void);
int test_div_2d(void);
int test_div(void);
int test_expt_d(void);
int test_expt(void);
int test_2expt(void);
int test_sqrt(void);
int test_mod_d(void);
int test_mod(void);
int test_addmod(void);
int test_submod(void);
int test_mulmod(void);
int test_sqrmod(void);
int test_exptmod(void);
int test_exptmod_d(void);
int test_invmod(void);
int test_cmp_d(void);
int test_cmp_z(void);
int test_cmp(void);
int test_cmp_mag(void);
int test_parity(void);
int test_gcd(void);
int test_lcm(void);
int test_convert(void);
int test_raw(void);
int test_pprime(void);
int test_fermat(void);
/* Table mapping index numbers to functions */
int (*g_tests[])(void) = {
test_list, test_copy, test_exch, test_zero,
test_set, test_abs, test_neg, test_add_d,
test_add, test_sub_d, test_sub, test_mul_d,
test_mul, test_sqr, test_div_d, test_div_2,
test_div_2d, test_div, test_expt_d, test_expt,
test_2expt, test_sqrt, test_mod_d, test_mod,
test_addmod, test_submod, test_mulmod, test_sqrmod,
test_exptmod, test_exptmod_d, test_invmod, test_cmp_d,
test_cmp_z, test_cmp, test_cmp_mag, test_parity,
test_gcd, test_lcm, test_convert, test_raw,
test_pprime, test_fermat
};
/* Table mapping index numbers to descriptions */
const char *g_descs[] = {
"print out a list of the available test suites",
"test assignment of mp-int structures",
"test exchange of mp-int structures",
"test zeroing of an mp-int",
"test setting an mp-int to a small constant",
"test the absolute value function",
"test the arithmetic negation function",
"test digit addition",
"test full addition",
"test digit subtraction",
"test full subtraction",
"test digit multiplication",
"test full multiplication",
"test full squaring function",
"test digit division",
"test division by two",
"test division & remainder by 2^d",
"test full division",
"test digit exponentiation",
"test full exponentiation",
"test power-of-two exponentiation",
"test integer square root function",
"test digit modular reduction",
"test full modular reduction",
"test modular addition",
"test modular subtraction",
"test modular multiplication",
"test modular squaring function",
"test full modular exponentiation",
"test digit modular exponentiation",
"test modular inverse function",
"test digit comparison function",
"test zero comparison function",
"test general signed comparison",
"test general magnitude comparison",
"test parity comparison functions",
"test greatest common divisor functions",
"test least common multiple function",
"test general radix conversion facilities",
"test raw output format",
"test probabilistic primality tester",
"test Fermat pseudoprimality tester"
};
|