aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-10-08 15:05:58 +0000
committerlloyd <[email protected]>2008-10-08 15:05:58 +0000
commitd40700c4b96c2f503991cbb36d72426d4b67a490 (patch)
tree7545fe8c7e1036d5726b06df29ba4bf5d4dbd4cf /doc
parent069cc093a9cc2923b244658cf7ffe97ade459346 (diff)
Split GF(p) tests into passing and failing ones
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/gfpmath_test.cpp18
1 files changed, 11 insertions, 7 deletions
diff --git a/doc/examples/gfpmath_test.cpp b/doc/examples/gfpmath_test.cpp
index bfa2796cc..f2225a134 100644
--- a/doc/examples/gfpmath_test.cpp
+++ b/doc/examples/gfpmath_test.cpp
@@ -672,18 +672,11 @@ int main()
test_turn_on_sp_red_mul();
test_bi_div_even();
test_bi_div_odd();
- test_deep_montgm();
- test_gfp_div_small_numbers();
test_gfp_basics();
test_gfp_addSubNegate();
- test_gfp_mult();
- test_gfp_div();
test_gfp_add();
test_gfp_sub();
- test_more_gfp_div();
test_gfp_mult_u32bit();
- test_gfp_shared_vals();
- test_gfpel_ass_op();
test_gfp_swap();
test_inv_in_place();
test_op_eq();
@@ -691,5 +684,16 @@ int main()
test_bi_bit_access();
test_sec_mod_mul();
+ test_deep_montgm();
+
+ std::cout << "\nrest\n";
+
+ test_gfp_div_small_numbers();
+ test_gfp_mult();
+ test_gfp_div();
+ test_more_gfp_div();
+ test_gfp_shared_vals();
+ test_gfpel_ass_op();
+
std::cout << "\ndone\n";
}