summaryrefslogtreecommitdiffstats
path: root/sql
diff options
context:
space:
mode:
authorphajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-05 18:20:36 +0000
committerphajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-05 18:20:36 +0000
commitd85fe1ef8bb6b25396391508c4996845fcd12921 (patch)
tree29a6029f02cb1ba81384c12792fd9e402d361c4f /sql
parent97063c3e2f54db0b01cc612a590eeb7ac478f5a2 (diff)
downloadchromium_src-d85fe1ef8bb6b25396391508c4996845fcd12921.zip
chromium_src-d85fe1ef8bb6b25396391508c4996845fcd12921.tar.gz
chromium_src-d85fe1ef8bb6b25396391508c4996845fcd12921.tar.bz2
Convert most run_all_unittests.cc files to use new unit test launcher.
Note that the new code is still behind a runtime flag (--brave-new-test-launcher), but compiling tests with support for it will make further testing possible. BUG=236893, 79359 R=akalin@chromium.org, enne@chromium.org, erikwright@chromium.org, joi@chromium.org, keybuk@chromium.org, sky@chromium.org, thestig@chromium.org, tommi@chromium.org, wtc@chromium.org, xhwang@chromium.org, yzshen@chromium.org Review URL: https://codereview.chromium.org/23442019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@221464 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sql')
-rw-r--r--sql/run_all_unittests.cc9
-rw-r--r--sql/sql.gyp2
2 files changed, 1 insertions, 10 deletions
diff --git a/sql/run_all_unittests.cc b/sql/run_all_unittests.cc
deleted file mode 100644
index 2c8d29c..0000000
--- a/sql/run_all_unittests.cc
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "base/test/test_suite.h"
-
-int main(int argc, char** argv) {
- return base::TestSuite(argc, argv).Run();
-}
diff --git a/sql/sql.gyp b/sql/sql.gyp
index 49ace01..aa2d642 100644
--- a/sql/sql.gyp
+++ b/sql/sql.gyp
@@ -78,12 +78,12 @@
'dependencies': [
'sql',
'test_support_sql',
+ '../base/base.gyp:run_all_unittests',
'../base/base.gyp:test_support_base',
'../testing/gtest.gyp:gtest',
'../third_party/sqlite/sqlite.gyp:sqlite',
],
'sources': [
- 'run_all_unittests.cc',
'connection_unittest.cc',
'recovery_unittest.cc',
'sqlite_features_unittest.cc',