summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJeff Sharkey <jsharkey@android.com>2014-11-18 14:23:18 -0800
committerJeff Sharkey <jsharkey@android.com>2014-11-18 14:23:18 -0800
commit2cb3bffdfbe47f5657821e5a12da9aab16b85c52 (patch)
tree372b650ace1a9d3eaef2636b364c24561ef8d9c4 /tests
parent7db653a8b239a00f34673b96479d8f41fd4cc815 (diff)
downloadandroid_frameworks_support-2cb3bffdfbe47f5657821e5a12da9aab16b85c52.tar.gz
android_frameworks_support-2cb3bffdfbe47f5657821e5a12da9aab16b85c52.tar.bz2
android_frameworks_support-2cb3bffdfbe47f5657821e5a12da9aab16b85c52.zip
Suppress tests that require user interaction.
Bug: 18429595 Change-Id: I8768a2627ba78b077ee79554e61ca16372a93bf3
Diffstat (limited to 'tests')
-rw-r--r--tests/java/android/support/v4/content/FileProviderTest.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/java/android/support/v4/content/FileProviderTest.java b/tests/java/android/support/v4/content/FileProviderTest.java
index b7bd01ce27..f8122fad56 100644
--- a/tests/java/android/support/v4/content/FileProviderTest.java
+++ b/tests/java/android/support/v4/content/FileProviderTest.java
@@ -26,6 +26,10 @@ import android.os.Environment;
import android.support.v4.content.FileProvider.SimplePathStrategy;
import android.test.AndroidTestCase;
import android.test.MoreAsserts;
+import android.test.suitebuilder.annotation.Suppress;
+
+import libcore.io.IoUtils;
+import libcore.io.Streams;
import java.io.File;
import java.io.FileNotFoundException;
@@ -33,12 +37,10 @@ import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
-import libcore.io.IoUtils;
-import libcore.io.Streams;
-
/**
* Tests for {@link FileProvider}
*/
+@Suppress
public class FileProviderTest extends AndroidTestCase {
private static final String TEST_AUTHORITY = "moocow";