reactos/modules/rostests/apitests/cmd/testlist.c
Katayama Hirofumi MZ 0c2230ad64
[CMD_APITEST] Add FC testcase (#3632)
Add a testcase for FC (file comparison) command to investigate FC command. CORE-17500
2021-04-29 16:39:13 +09:00

21 lines
433 B
C

#define STANDALONE
#include <apitest.h>
extern void func_attrib(void);
extern void func_cd(void);
extern void func_echo(void);
extern void func_exit(void);
extern void func_fc(void);
extern void func_pushd(void);
const struct test winetest_testlist[] =
{
{ "attrib", func_attrib },
{ "cd", func_cd },
{ "echo", func_echo },
{ "exit", func_exit },
{ "fc", func_fc },
{ "pushd", func_pushd },
{ 0, 0 }
};