Merge change 6652 into donut

* changes:
  Call clearCache on WebView before collecting memory information.
This commit is contained in:
Android (Google) Code Review
2009-07-09 13:44:30 -07:00
2 changed files with 5 additions and 0 deletions

View File

@@ -72,6 +72,7 @@ public class LoadTestsAutoTest extends ActivityInstrumentationTestCase2<TestShel
// Run tests // Run tests
runTestAndWaitUntilDone(activity, runner.mTestPath, runner.mTimeoutInMillis); runTestAndWaitUntilDone(activity, runner.mTestPath, runner.mTimeoutInMillis);
activity.clearCache();
dumpMemoryInfo(); dumpMemoryInfo();
// Kill activity // Kill activity

View File

@@ -87,6 +87,10 @@ public class TestShellActivity extends Activity implements LayoutTestController
} }
} }
public void clearCache() {
mWebView.clearCache(true);
}
@Override @Override
protected void onCreate(Bundle icicle) { protected void onCreate(Bundle icicle) {
super.onCreate(icicle); super.onCreate(icicle);