blob: f240460f2369890a7b999bbf48c1b367760ca662 [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 <stdio.h>
#include <zircon/compiler.h>
#include <zxtest/zxtest.h>
// Provides a default entry point to run all registered tests. If the main program provides its own
// main, the library's main will be ignored.
__WEAK int main(int argc, char** argv) {
setlinebuf(stdout);
return RUN_ALL_TESTS(argc, argv);
}