blob: 425bde435454a6167be85a0c13f9e2c1a725d7ba [file] [log] [blame]
// Copyright 2023 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 "test_observer.h"
int main(int argc, char** argv) {
// TODO(https://fxbug.dev/42073486): Remove this once the elf runner no longer
// fools libc into block-buffering stdout.
setlinebuf(stdout);
zxtest::Runner::GetInstance()->AddObserver(&test_observer);
return RUN_ALL_TESTS(argc, argv);
}