Merge pull request #2554 from ludovic-henry/coop-blocking-interrupt
[mono.git] / mcs / class / Mono.Security / Test / Mono.Math / ChangeLog
1 2007-07-05  Sebastien Pouliot  <sebastien@ximian.com>
2
3         * PrimeTestingTest.cs: Re-enable failing 20 digits primes (now that
4         we have a workaround for them).
5
6 2007-07-04  Sebastien Pouliot  <sebastien@ximian.com>
7
8         * BigIntegerTest.cs: A few more ModPow test cases to corner the
9         small value bug (looks like a bad Barrett reduction).
10         * PrimeTestingTest.cs: Add test cases for "small" primes between
11         10 and 300 digits. 3 cases are failing for 20 digits primes.
12
13 2007-07-03  Sebastien Pouliot  <sebastien@ximian.com> 
14
15         * BigIntegerTest.cs: Add test cases for small values with 
16         IsProbablePrime. From bug #81857, subset from patch by Kazuki.
17
18 2005-01-03  Nick Drochak  <ndrochak@gol.com>
19
20         * BigIntegerTest.cs: Make tests pass on MS DotNet
21
22 2004-12-03  Sebastien Pouliot  <sebastien@ximian.com>
23
24         * BigIntegerTest.cs: Added tests for ModPow when power is 0, for a 
25         known case that was faling in classpath and when modulo is a power of
26         two (bug #70169).
27
28 2004-10-19  Sebastien Pouliot  <sebastien@ximian.com>
29
30         * BigIntegerTest.cs: New. General unit tests for BigInteger.
31
32 2004-04-22  Sebastien Pouliot  <sebastien@ximian.com>
33
34         * GcdBigTest.cs: Ajusted to changes in assembly.
35         * ModInverseBigTest.cs: Ajusted to changes in assembly.
36         * PrimeGenerationTest.cs: Ajusted to changes in assembly.
37         * PrimeTestingTest.cs: Ajusted to changes in assembly.
38         * SearchGeneratorTest.cs: Ajusted to changes in assembly.
39
40 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com>
41
42         * PrimeTestingTest.cs: Added well known (and tested) primes from 
43         RFC 2412 (http://www.faqs.org/rfcs/rfc2412.html) as suggested by
44         Pieter Philippaerts (#51229).
45         * SearchGeneratorTest.cs: Modified so this still use the (previous)
46         SmallPrimeSppTest primality test - because RM doesn't work for
47         small primes.
48
49 2004-02-09  Sebastien Pouliot  <sebastien@ximian.com>
50
51         * ArithmeticBigTest.cs: 
52         * BigIntegerSetTest.cs:
53         * BitwiseTest.cs:
54         * GcdBigTest.cs:
55         * ModInverseBigTest.cs:
56         * ModRingTest.cs:
57         * PrimeGenerationTest.cs:
58         * PrimeTestingTest.cs:
59         * SearchGeneratorTest.cs:
60                 New. Copied from corlib (where they cannot be executed because BigInteger is internal).