Tests/BigInteger: GMP engine didn't always return 1 or -1

This commit is contained in:
terrafrost 2019-05-26 12:13:54 -05:00
parent 9c67616f1e
commit ade48c2cb1

View File

@ -185,6 +185,9 @@ abstract class Unit_Math_BigInteger_TestCase extends PhpseclibTestCase
// c < d
$this->assertLessThan(0, $c->compare($d));
$this->assertGreaterThan(0, $d->compare($c));
$this->assertSame(-1, $this->getInstance(-999)->compare($this->getInstance(370)));
$this->assertSame(1, $this->getInstance(999)->compare($this->getInstance(-700)));
}
public function testBitwiseAND()