Some of the structures, notably 'cmd', in the lib console stuff are a little too generically named and have collided with some other code so prefix the names a bit more cleanly with console_ The change is largely mechanical, and folks with out of tree code can easily switch by renaming: cmd -> console_cmd cmd_args -> console_cmd_args cmd_block -> console_cmd_block console_cmd -> console_cmd_func Apologies if this breaks you but it should be pretty easy to fix.
25 lines
796 B
C
25 lines
796 B
C
/*
|
|
* Copyright (c) 2008-2014 Travis Geiselbrecht
|
|
*
|
|
* Use of this source code is governed by a MIT-style
|
|
* license that can be found in the LICENSE file or at
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
#ifndef __APP_TESTS_H
|
|
#define __APP_TESTS_H
|
|
|
|
#include <lk/console_cmd.h>
|
|
|
|
int cbuf_tests(int argc, const console_cmd_args *argv);
|
|
int fibo(int argc, const console_cmd_args *argv);
|
|
int port_tests(int argc, const console_cmd_args *argv);
|
|
int spinner(int argc, const console_cmd_args *argv);
|
|
int thread_tests(int argc, const console_cmd_args *argv);
|
|
int benchmarks(int argc, const console_cmd_args *argv);
|
|
int clock_tests(int argc, const console_cmd_args *argv);
|
|
int printf_tests(int argc, const console_cmd_args *argv);
|
|
int printf_tests_float(int argc, const console_cmd_args *argv);
|
|
|
|
#endif
|
|
|