00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #define TESTFILE "badcallfile"
00031 #define TESTDIR "badcalldir"
00032 #define TESTLINK "badcalllink"
00033
00034
00035 void report_survival(int rv, int error, const char *desc);
00036 void report_test(int rv, int error, int right_error, const char *desc);
00037 void report_test2(int rv, int error, int okerr1, int okerr2, const char *desc);
00038 int open_testfile(const char *str);
00039 int create_testfile(void);
00040 int create_testdir(void);
00041 int create_testlink(void);
00042
00043
00044 void test_read_buf(void);
00045 void test_write_buf(void);
00046 void test_getdirentry_buf(void);
00047 void test_getcwd_buf(void);
00048 void test_readlink_buf(void);
00049
00050
00051 void test_read_fd(void);
00052 void test_write_fd(void);
00053 void test_close_fd(void);
00054 void test_ioctl_fd(void);
00055 void test_lseek_fd(void);
00056 void test_fsync_fd(void);
00057 void test_ftruncate_fd(void);
00058 void test_fstat_fd(void);
00059 void test_getdirentry_fd(void);
00060 void test_dup2_fd(void);
00061
00062
00063 void test_open_path(void);
00064 void test_remove_path(void);
00065 void test_rename_paths(void);
00066 void test_link_paths(void);
00067 void test_mkdir_path(void);
00068 void test_rmdir_path(void);
00069 void test_chdir_path(void);
00070 void test_symlink_paths(void);
00071 void test_readlink_path(void);
00072 void test_stat_path(void);
00073 void test_lstat_path(void);
00074
00075
00076 void test_execv(void);
00077 void test_waitpid(void);
00078 void test_open(void);
00079 void test_read(void);
00080 void test_write(void);
00081 void test_close(void);
00082 void test_reboot(void);
00083 void test_sbrk(void);
00084 void test_ioctl(void);
00085 void test_lseek(void);
00086 void test_fsync(void);
00087 void test_ftruncate(void);
00088 void test_fstat(void);
00089 void test_remove(void);
00090 void test_rename(void);
00091 void test_link(void);
00092 void test_mkdir(void);
00093 void test_rmdir(void);
00094 void test_chdir(void);
00095 void test_getdirentry(void);
00096 void test_symlink(void);
00097 void test_readlink(void);
00098 void test_dup2(void);
00099 void test_pipe(void);
00100 void test_time(void);
00101 void test_getcwd(void);
00102 void test_stat(void);
00103 void test_lstat(void);