Merge change Ica1d7b90 into eclair

* changes:
  Disable known failure math tanhd tests  (DO NOT MERGE)
This commit is contained in:
Android (Google) Code Review
2009-10-21 00:48:41 -04:00
2 changed files with 4 additions and 2 deletions

View File

@@ -687,7 +687,8 @@ public class MathTest extends TestCase {
/**
* @tests java.lang.Math#tanh(double)
*/
@SmallTest
// TODO: Known failure, temporarily remove from SmallSuite
// @SmallTest
public void testTanhD() {
// Test for special situations
assertTrue("Should return NaN", Double.isNaN(Math.tanh(Double.NaN)));

View File

@@ -709,7 +709,8 @@ public class StrictMathTest extends TestCase {
/**
* @tests java.lang.StrictMath#tanh(double)
*/
@SmallTest
// TODO: Known failure, temporarily remove from small suite
// @SmallTest
public void testTanhD() {
// Test for special situations
assertTrue(Double.isNaN(StrictMath.tanh(Double.NaN)));