1// Copyright 2016 The Fuchsia Authors
2// Copyright (c) 2008-2014 Travis Geiselbrecht
3//
4// Use of this source code is governed by a MIT-style
5// license that can be found in the LICENSE file or at
6// https://opensource.org/licenses/MIT
7
8#pragma once
9
10#include <lib/console.h>
11#include <zircon/compiler.h>
12
13__BEGIN_CDECLS
14
15console_cmd uart_tests, thread_tests, sleep_tests, port_tests;
16console_cmd clock_tests, timer_diag, timer_stress, benchmarks, fibo;
17console_cmd spinner, ref_counted_tests, ref_ptr_tests;
18console_cmd unique_ptr_tests, forward_tests, list_tests;
19console_cmd hash_tests, vm_tests, auto_call_tests;
20console_cmd arena_tests, fifo_tests, alloc_checker_tests;
21void unittests(void);
22
23__END_CDECLS
24