X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Flib.c;h=a9aecf78bcfec571954a46202df59b74cef16454;hp=a7219c59f31d303f31ac2757902ae2fba19278d9;hb=10d09f1cb066885e3934db0c2c7c86dd10cbc8bf;hpb=a32621e0d7f5f391e9152cfe710fa6c99ca44c50 diff --git a/direct/timothy_tests/quick_tests/lib.c b/direct/timothy_tests/quick_tests/lib.c index a7219c5..a9aecf7 100644 --- a/direct/timothy_tests/quick_tests/lib.c +++ b/direct/timothy_tests/quick_tests/lib.c @@ -13,6 +13,38 @@ #include "lib.h" +static int EXIT_ON_ERROR = 1; +static int PRINT_LEVEL = 2; //This sets the level of detail which is printed. There are 3 levels 0,1,2 and 3 + //0 just prints the number of tests passed and failed. + //1 is the basic print level. it will print the details of a failed test. + //2 will print if a test passes and cleans. +void set_print_level(int new_level) +{ + PRINT_LEVEL=new_level; +} + +void set_exit_on_error(int num) +{ + EXIT_ON_ERROR=num; +} + +int get_exit_on_error(void) +{ + return EXIT_ON_ERROR; +} + + +int set_up_ELOOP(void){ + int output1=1; + int output2=1; + if (0!=yaffs_access(ELOOP2)){ + output1=yaffs_symlink(ELOOP,ELOOP2); + } + if (0!=yaffs_access(ELOOP)){ + output2=yaffs_symlink(ELOOP2,ELOOP); + } + return (output1|output2); +} void join_paths(char *path1,char *path2,char *new_path ) {