blob: 8931902592866c5581778ed305cc9d959e6d1b92 [file] [log] [blame]
rspangler@google.com49fdf182009-10-10 00:57:34 +00001// Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// based on pam_google_testrunner.cc
6
7#include <gtest/gtest.h>
8
9int main(int argc, char **argv) {
10 ::testing::InitGoogleTest(&argc, argv);
11 return RUN_ALL_TESTS();
12}