summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Muramatsu <btmura@android.com>2011-05-23 14:20:05 -0700
committerAndroid Code Review <code-review@android.com>2011-05-23 14:20:05 -0700
commit7d1af5ab4b0ed52f46b33204adbc5df9b07a3aba (patch)
tree9bc87580a7003fe44b11c455a0f70eef0705b9a9
parent48bfddb0480b83b478cbcc057d004c8fc99e5172 (diff)
parent206d087a5effe8f24fccbfa8db19f5938145d899 (diff)
downloadcts-7d1af5ab4b0ed52f46b33204adbc5df9b07a3aba.tar.gz
Merge "Don't fail if vold.fstab is empty" into froyo
-rw-r--r--tests/tests/security/src/android/security/cts/VoldExploitTest.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/tests/security/src/android/security/cts/VoldExploitTest.java b/tests/tests/security/src/android/security/cts/VoldExploitTest.java
index a72d6de162a..df58a2c2519 100644
--- a/tests/tests/security/src/android/security/cts/VoldExploitTest.java
+++ b/tests/tests/security/src/android/security/cts/VoldExploitTest.java
@@ -50,7 +50,11 @@ public class VoldExploitTest extends TestCase {
Set<String> devices = new HashSet<String>();
devices.addAll(getSysFsPath("/etc/vold.fstab"));
devices.addAll(getSysFsPath("/system/etc/vold.fstab"));
- assertTrue(devices.size() > 0);
+ if (devices.isEmpty()) {
+ // FIXME: We should be able to detect this security hole
+ // even if there's no vold.fstab entry
+ return;
+ }
// Verify that all processes listening for netlink messages
// currently exist.