diff options
| author | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-30 23:46:17 +0000 |
|---|---|---|
| committer | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-30 23:46:17 +0000 |
| commit | e444c95bb327f0addaa066df4356268cf84bfb46 (patch) | |
| tree | 8c07d97afc99f8c9f961b23e5dce6ce38672768e /chrome/browser/diagnostics/diagnostics_model.cc | |
| parent | c5804aa16e82c47165652c1f3e6b570a4125b12e (diff) | |
| download | chromium_src-e444c95bb327f0addaa066df4356268cf84bfb46.zip chromium_src-e444c95bb327f0addaa066df4356268cf84bfb46.tar.gz chromium_src-e444c95bb327f0addaa066df4356268cf84bfb46.tar.bz2 | |
Implement db corruption tests for diagnostic mode
- Uses sqlite's pragma integrity_check
- Tests the 5 main databases
BUG=27885
TEST=none
Review URL: http://codereview.chromium.org/1548005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43143 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/diagnostics/diagnostics_model.cc')
| -rw-r--r-- | chrome/browser/diagnostics/diagnostics_model.cc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/chrome/browser/diagnostics/diagnostics_model.cc b/chrome/browser/diagnostics/diagnostics_model.cc index 0fb53fc..b7a1bc3 100644 --- a/chrome/browser/diagnostics/diagnostics_model.cc +++ b/chrome/browser/diagnostics/diagnostics_model.cc @@ -14,6 +14,7 @@ #include "base/path_service.h" #include "chrome/browser/diagnostics/diagnostics_test.h" #include "chrome/browser/diagnostics/recon_diagnostics.h" +#include "chrome/browser/diagnostics/sqlite_diagnostics.h" #include "chrome/common/chrome_paths.h" namespace { @@ -86,6 +87,11 @@ class DiagnosticsModelWin : public DiagnosticsModelImpl { tests_.push_back(MakeDictonaryDirTest()); tests_.push_back(MakeInspectorDirTest()); tests_.push_back(MakeDiskSpaceTest()); + tests_.push_back(MakeSqliteWebDbTest()); + tests_.push_back(MakeSqliteCookiesDbTest()); + tests_.push_back(MakeSqliteHistoryDbTest()); + tests_.push_back(MakeSqliteArchivedHistoryDbTest()); + tests_.push_back(MakeSqliteThumbnailsDbTest()); } private: @@ -102,6 +108,11 @@ class DiagnosticsModelMac : public DiagnosticsModelImpl { tests_.push_back(MakeDictonaryDirTest()); tests_.push_back(MakeInspectorDirTest()); tests_.push_back(MakeDiskSpaceTest()); + tests_.push_back(MakeSqliteWebDbTest()); + tests_.push_back(MakeSqliteCookiesDbTest()); + tests_.push_back(MakeSqliteHistoryDbTest()); + tests_.push_back(MakeSqliteArchivedHistoryDbTest()); + tests_.push_back(MakeSqliteThumbnailsDbTest()); } private: @@ -118,6 +129,11 @@ class DiagnosticsModelPosix : public DiagnosticsModelImpl { tests_.push_back(MakeDictonaryDirTest()); tests_.push_back(MakeInspectorDirTest()); tests_.push_back(MakeDiskSpaceTest()); + tests_.push_back(MakeSqliteWebDbTest()); + tests_.push_back(MakeSqliteCookiesDbTest()); + tests_.push_back(MakeSqliteHistoryDbTest()); + tests_.push_back(MakeSqliteArchivedHistoryDbTest()); + tests_.push_back(MakeSqliteThumbnailsDbTest()); } private: |
