summaryrefslogtreecommitdiff
path: root/testrunner.cc
blob: 0056643669f1363ea484745d7d5e166c7f7d7927 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//
// Copyright (C) 2011 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

#include <base/at_exit.h>
#include <base/command_line.h>
#include <chromeos/syslog_logging.h>
#include <gtest/gtest.h>

#include "shill/logging.h"

namespace switches {

static const char kHelp[] = "help";

static const char kHelpMessage[] = "\n"
    "Additional (non-gtest) switches:\n"
    "  --log-level=N\n"
    "    Logging level:\n"
    "      0 = LOG(INFO), 1 = LOG(WARNING), 2 = LOG(ERROR),\n"
    "      -1 = SLOG(..., 1), -2 = SLOG(..., 2), etc.\n"
    "  --log-scopes=\"*scope1+scope2\".\n"
    "    Scopes to enable for SLOG()-based logging.\n";

}  // namespace switches

int main(int argc, char** argv) {
  base::AtExitManager exit_manager;
  base::CommandLine::Init(argc, argv);
  base::CommandLine* cl = base::CommandLine::ForCurrentProcess();
  chromeos::InitLog(chromeos::kLogToStderr);
  shill::SetLogLevelFromCommandLine(cl);
  ::testing::InitGoogleTest(&argc, argv);

  if (cl->HasSwitch(switches::kHelp)) {
    std::cerr << switches::kHelpMessage;
  }

  return RUN_ALL_TESTS();
}