summaryrefslogtreecommitdiffstats
path: root/printing/run_all_unittests.cc
diff options
context:
space:
mode:
authorsverrir@google.com <sverrir@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-09 21:38:38 +0000
committersverrir@google.com <sverrir@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-09 21:38:38 +0000
commitc109691b7032671759ba4375ef703f4b0784dd3d (patch)
tree81100ebeed2c93b738db1dc127f8cb8d217f5be7 /printing/run_all_unittests.cc
parentef6fdb767d0a059f67c782ab40c396d5c076c4d1 (diff)
downloadchromium_src-c109691b7032671759ba4375ef703f4b0784dd3d.zip
chromium_src-c109691b7032671759ba4375ef703f4b0784dd3d.tar.gz
chromium_src-c109691b7032671759ba4375ef703f4b0784dd3d.tar.bz2
Make the printint_unittest use the correct test harness. This removes the need for an AtExitManager in one of the tests (which is just plain wrong).
BUG=none TEST=no functional change (printing_unittests should run successfully). Review URL: http://codereview.chromium.org/149407 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20319 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing/run_all_unittests.cc')
-rw-r--r--printing/run_all_unittests.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/printing/run_all_unittests.cc b/printing/run_all_unittests.cc
index d9f6b58..63b8020 100644
--- a/printing/run_all_unittests.cc
+++ b/printing/run_all_unittests.cc
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "base/test_suite.h"
+#include "app/test_suite.h"
int main(int argc, char** argv) {
- return TestSuite(argc, argv).Run();
+ return AppTestSuite(argc, argv).Run();
}