summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrett Chabot <brettchabot@android.com>2009-10-20 14:09:28 -0700
committerBrett Chabot <brettchabot@android.com>2009-10-20 14:12:59 -0700
commitefc6bef1413f0ec7a3dce796b17e30d2357e5590 (patch)
tree9d746eddd460301efef9d8e0701937178810e56e
parent617262d8f57362536ddc00a070c1c0994741de44 (diff)
downloadframeworks_base-efc6bef1413f0ec7a3dce796b17e30d2357e5590.zip
frameworks_base-efc6bef1413f0ec7a3dce796b17e30d2357e5590.tar.gz
frameworks_base-efc6bef1413f0ec7a3dce796b17e30d2357e5590.tar.bz2
Disable known failure math tanhd tests (DO NOT MERGE)
BUG 2139334
-rw-r--r--tests/CoreTests/android/core/MathTest.java3
-rw-r--r--tests/CoreTests/android/core/StrictMathTest.java3
2 files changed, 4 insertions, 2 deletions
diff --git a/tests/CoreTests/android/core/MathTest.java b/tests/CoreTests/android/core/MathTest.java
index 50009db..64c8c1e 100644
--- a/tests/CoreTests/android/core/MathTest.java
+++ b/tests/CoreTests/android/core/MathTest.java
@@ -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)));
diff --git a/tests/CoreTests/android/core/StrictMathTest.java b/tests/CoreTests/android/core/StrictMathTest.java
index 92e6cb6..c98c91d 100644
--- a/tests/CoreTests/android/core/StrictMathTest.java
+++ b/tests/CoreTests/android/core/StrictMathTest.java
@@ -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)));