diff options
Diffstat (limited to 'tests/BootImageProfileTest/src')
-rw-r--r-- | tests/BootImageProfileTest/src/com/android/bootimageprofile/BootImageProfileTest.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/BootImageProfileTest/src/com/android/bootimageprofile/BootImageProfileTest.java b/tests/BootImageProfileTest/src/com/android/bootimageprofile/BootImageProfileTest.java index f8e338e93002..74aaec1eee34 100644 --- a/tests/BootImageProfileTest/src/com/android/bootimageprofile/BootImageProfileTest.java +++ b/tests/BootImageProfileTest/src/com/android/bootimageprofile/BootImageProfileTest.java @@ -94,6 +94,8 @@ public class BootImageProfileTest implements IDeviceTest { boolean sawServices = false; for (String line : res.split("\n")) { if (line.contains("framework.jar")) { + sawFramework = true; // Legacy + } else if (line.contains("framework-minus-apex.jar")) { sawFramework = true; } else if (line.contains("services.jar")) { sawServices = true; |