1 /* 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 #ifndef __APP_TESTS_H 9 #define __APP_TESTS_H 10 11 #include <lk/console_cmd.h> 12 13 int cbuf_tests(int argc, const console_cmd_args *argv); 14 int fibo(int argc, const console_cmd_args *argv); 15 int port_tests(int argc, const console_cmd_args *argv); 16 int spinner(int argc, const console_cmd_args *argv); 17 int thread_tests(int argc, const console_cmd_args *argv); 18 int benchmarks(int argc, const console_cmd_args *argv); 19 int clock_tests(int argc, const console_cmd_args *argv); 20 int printf_tests(int argc, const console_cmd_args *argv); 21 int printf_tests_float(int argc, const console_cmd_args *argv); 22 23 #endif 24 25