mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 04:37:32 +00:00
0c2230ad64
Add a testcase for FC (file comparison) command to investigate FC command. CORE-17500
21 lines
433 B
C
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 }
|
|
};
|