Skip to content
Snippets Groups Projects
Commit 17dd74a1 authored by Chris Wailes's avatar Chris Wailes
Browse files

Update BackgroundDexOptServiceIntegrationTests

This CL updates BackgroundDexOptServiceIntegrationTests to take into
account changes in compiler filters.  Specifically, quicken is being
deprecated and had to be replaced in the test.

Test: adb BackgroundDexOptServiceIntegrationTests
Merged-In: I3d4f96e27586cbf647d301a4ee7afd32576bbf41
Change-Id: I3d4f96e27586cbf647d301a4ee7afd32576bbf41
parent eb87a526
No related branches found
No related tags found
No related merge requests found
......@@ -264,9 +264,9 @@ public final class BackgroundDexOptServiceIntegrationTests {
// Set time to future.
setTimeFutureDays(deltaDays);
// Set filter to quicken.
compilePackageWithFilter(PACKAGE_NAME, "quicken");
Assert.assertEquals("quicken", getCompilerFilter(PACKAGE_NAME));
// Set filter to verify.
compilePackageWithFilter(PACKAGE_NAME, "verify");
Assert.assertEquals("verify", getCompilerFilter(PACKAGE_NAME));
// Fill up storage to trigger low storage threshold.
fillUpToLowStorage();
......@@ -290,9 +290,9 @@ public final class BackgroundDexOptServiceIntegrationTests {
// Set time to future.
setTimeFutureDays(deltaDays);
// Set filter to quicken.
compilePackageWithFilter(PACKAGE_NAME, "quicken");
Assert.assertEquals("quicken", getCompilerFilter(PACKAGE_NAME));
// Set filter to speed-profile.
compilePackageWithFilter(PACKAGE_NAME, "speed-profile");
Assert.assertEquals("speed-profile", getCompilerFilter(PACKAGE_NAME));
// Fill up storage to trigger low storage threshold.
fillUpToLowStorage();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment