blob: a9f7a6bbf450b95e853afe24b127933ac294d25c [file] [log] [blame]
// Copyright 2016 The Fuchsia 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 "gtest/gtest.h"
#include "src/lib/fxl/logging.h"
#include "test_settings.h"
int main(int argc, char** argv) {
if (!fxl::SetTestSettings(argc, argv)) {
FXL_LOG(ERROR) << "Failed to parse log settings from command-line";
return EXIT_FAILURE;
}
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}