]> git.saurik.com Git - apple/xnu.git/blobdiff - tools/tests/xnu_quick_test/tests.h
xnu-1228.tar.gz
[apple/xnu.git] / tools / tests / xnu_quick_test / tests.h
diff --git a/tools/tests/xnu_quick_test/tests.h b/tools/tests/xnu_quick_test/tests.h
new file mode 100644 (file)
index 0000000..6505466
--- /dev/null
@@ -0,0 +1,121 @@
+#ifndef _TESTS_H_
+#define        _TESTS_H_
+
+#ifndef DEBUG
+#define DEBUG                          0
+#endif
+#ifndef CONFORMANCE_TESTS_IN_XNU
+#define CONFORMANCE_TESTS_IN_XNU       0
+#endif
+#ifndef TEST_SYSTEM_CALLS
+#define TEST_SYSTEM_CALLS              0
+#endif
+
+#include <errno.h>
+#include <fcntl.h>
+#include <signal.h>            /* Install signal handlers*/
+#include <spawn.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
+#include <mach/machine.h>      /* Used to determine host properties */
+#include <mach/vm_inherit.h>
+#include <sys/acct.h>
+#include <sys/aio.h>
+#include <sys/attr.h>
+#include <sys/dirent.h>
+#include <sys/disk.h>
+#include <sys/uio.h>
+#include <sys/kauth.h>
+#include <sys/mman.h>
+#include <sys/mount.h>
+#include <sys/param.h>
+#include <sys/ptrace.h>
+#include <sys/quota.h>
+#include <sys/resource.h>
+#include <sys/select.h>
+#include <sys/signal.h>
+#include <sys/socket.h>
+#include <sys/stat.h>
+#include <sys/syscall.h>
+#include <sys/sysctl.h>                /* Used to determine host properties */
+#include <sys/syslimits.h>
+#include <sys/time.h>
+#include <sys/ttycom.h>
+#include <sys/types.h>
+#include <sys/ucred.h>
+#include <sys/vnode.h>
+#include <sys/wait.h>
+        
+#define MY_BUFFER_SIZE (1024 * 10)
+#define POWERPC        238947
+#define INTEL  38947                   /* 
+                                        * Random values used by execve tests to 
+                                        * determine architecture of machine.
+                                        */
+
+typedef int (*test_rtn_t)(void *);
+
+int access_chmod_fchmod_test( void * the_argp );
+int acct_test( void * the_argp );
+int aio_tests( void * the_argp );
+int bsd_shm_tests( void * the_argp );
+int chdir_fchdir_test( void * the_argp );
+int chflags_fchflags_test( void * the_argp );
+int chroot_test( void * the_argp );
+int chown_fchown_lchown_lstat_symlink_test( void * the_argp );
+int create_file_with_name( char *the_pathp, char *the_namep, int remove_existing );
+int create_random_name( char *the_pathp, int do_open );
+int directory_tests( void * the_argp );
+int do_execve_test(char * path, char * argv[], void * envpi, int killwait);
+int dup_test( void * the_argp );
+int exchangedata_test( void * the_argp );
+int execve_kill_vfork_test( void * the_argp );
+int fcntl_test( void * the_argp );
+int fork_wait4_exit_test( void * the_argp );
+int fs_stat_tests( void * the_argp );
+int get_architecture(void);                            /* Intel or PPC */
+int get_bits(void);                                    /* 64 or 32 */
+int getlogin_setlogin_test( void * the_argp );
+int getpid_getppid_pipe_test( void * the_argp );
+int getpriority_setpriority_test( void * the_argp );
+int getrusage_profil_test( void * the_argp );
+int groups_test( void * the_argp );
+int ioctl_test( void * the_argp );
+int kqueue_tests( void * the_argp );
+int limit_tests( void * the_argp );
+int link_stat_unlink_test( void * the_argp );
+int locking_test( void * the_argp );
+int memory_tests( void * the_argp );
+int message_queue_tests( void * the_argp );
+int mkdir_rmdir_umask_test( void * the_argp );
+int mkfifo_test( void * the_argp );
+int mknod_sync_test( void * the_argp );
+int open_close_test( void * the_argp );
+int process_group_test( void * the_argp );
+int quotactl_test( void * the_argp );
+int read_write_test( void * the_argp );
+int rename_test( void * the_argp );
+int searchfs_test( void * the_argp );
+int sema_tests( void * the_argp );
+int sema2_tests( void * the_argp );
+int shm_tests( void * the_argp );
+int signals_test( void * the_argp );
+int socket_tests( void * the_argp );
+int socket2_tests( void * the_argp );
+int syscall_test( void * the_argp );
+int time_tests( void * the_argp );
+int uid_tests( void * the_argp );
+int xattr_tests( void * the_argp );
+
+struct test_entry 
+{
+       int                             test_run_it;            /* 0 means do not run this test, else run it */
+       test_rtn_t              test_routine;           /* routine to call */
+       void *                  test_input;                     /* optional input to test_routine */ 
+       char *                  test_infop;                     /* information about what is tested */ 
+};
+typedef struct test_entry * test_entryp;
+
+#endif /* !_TESTS_H_ */