blob: c8c0f5a54ac37f512a0ca13015ba5a5b4c524b14 [file] [log] [blame]
// Copyright 2019 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 "garnet/bin/trace/tests/component_context.h"
#include "src/lib/fxl/logging.h"
#include "src/lib/fxl/test/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);
tracing::test::InitComponentContext();
return RUN_ALL_TESTS();
}