Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | # |
michael@0 | 2 | # Test suite table for MPI library |
michael@0 | 3 | # |
michael@0 | 4 | # Format of entries: |
michael@0 | 5 | # suite-name:function-name:description |
michael@0 | 6 | # |
michael@0 | 7 | # suite-name The name used to identify this test in mpi-test |
michael@0 | 8 | # function-name The function called to perform this test in mpi-test.c |
michael@0 | 9 | # description A brief description of what the suite tests |
michael@0 | 10 | |
michael@0 | 11 | # This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 12 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 13 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 14 | |
michael@0 | 15 | list:test_list:print out a list of the available test suites |
michael@0 | 16 | copy:test_copy:test assignment of mp-int structures |
michael@0 | 17 | exchange:test_exch:test exchange of mp-int structures |
michael@0 | 18 | zero:test_zero:test zeroing of an mp-int |
michael@0 | 19 | set:test_set:test setting an mp-int to a small constant |
michael@0 | 20 | absolute-value:test_abs:test the absolute value function |
michael@0 | 21 | negate:test_neg:test the arithmetic negation function |
michael@0 | 22 | add-digit:test_add_d:test digit addition |
michael@0 | 23 | add:test_add:test full addition |
michael@0 | 24 | subtract-digit:test_sub_d:test digit subtraction |
michael@0 | 25 | subtract:test_sub:test full subtraction |
michael@0 | 26 | multiply-digit:test_mul_d:test digit multiplication |
michael@0 | 27 | multiply:test_mul:test full multiplication |
michael@0 | 28 | square:test_sqr:test full squaring function |
michael@0 | 29 | divide-digit:test_div_d:test digit division |
michael@0 | 30 | divide-2:test_div_2:test division by two |
michael@0 | 31 | divide-2d:test_div_2d:test division & remainder by 2^d |
michael@0 | 32 | divide:test_div:test full division |
michael@0 | 33 | expt-digit:test_expt_d:test digit exponentiation |
michael@0 | 34 | expt:test_expt:test full exponentiation |
michael@0 | 35 | expt-2:test_2expt:test power-of-two exponentiation |
michael@0 | 36 | square-root:test_sqrt:test integer square root function |
michael@0 | 37 | modulo-digit:test_mod_d:test digit modular reduction |
michael@0 | 38 | modulo:test_mod:test full modular reduction |
michael@0 | 39 | mod-add:test_addmod:test modular addition |
michael@0 | 40 | mod-subtract:test_submod:test modular subtraction |
michael@0 | 41 | mod-multiply:test_mulmod:test modular multiplication |
michael@0 | 42 | mod-square:test_sqrmod:test modular squaring function |
michael@0 | 43 | mod-expt:test_exptmod:test full modular exponentiation |
michael@0 | 44 | mod-expt-digit:test_exptmod_d:test digit modular exponentiation |
michael@0 | 45 | mod-inverse:test_invmod:test modular inverse function |
michael@0 | 46 | compare-digit:test_cmp_d:test digit comparison function |
michael@0 | 47 | compare-zero:test_cmp_z:test zero comparison function |
michael@0 | 48 | compare:test_cmp:test general signed comparison |
michael@0 | 49 | compare-magnitude:test_cmp_mag:test general magnitude comparison |
michael@0 | 50 | parity:test_parity:test parity comparison functions |
michael@0 | 51 | gcd:test_gcd:test greatest common divisor functions |
michael@0 | 52 | lcm:test_lcm:test least common multiple function |
michael@0 | 53 | conversion:test_convert:test general radix conversion facilities |
michael@0 | 54 | binary:test_raw:test raw output format |
michael@0 | 55 | pprime:test_pprime:test probabilistic primality tester |
michael@0 | 56 | fermat:test_fermat:test Fermat pseudoprimality tester |