blob: 789f7eda5f6ffab70907804e84454b364f1ba5aa [file] [log] [blame]
// Copyright 2020 The Chromium OS 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 <common-mk/testrunner.h>
#include <mojo/core/embedder/embedder.h>
// This test runner creates the platform2::TestRunner and initializes mojo for
// tests that require it. Mojo is not initialized by default.
int main(int argc, char** argv) {
auto runner = platform2::TestRunner(argc, argv);
mojo::core::Init();
return runner.Run();
}