]> git.saurik.com Git - apple/xnu.git/blob - tests/xnu_quick_test_helpers.h
90fcc2d2f8a6f9b5ea3ee2c3c9615d5a449f9823
[apple/xnu.git] / tests / xnu_quick_test_helpers.h
1 #ifndef XNU_QUICK_TEST_HELPERS_H
2 #define XNU_QUICK_TEST_HELPERS_H
3
4 #include <stdlib.h>
5 #include <sys/stat.h>
6 #include <sys/syslimits.h>
7
8 #define TEST_DIRECTORY "/tmp"
9
10 extern char g_target_path[PATH_MAX];
11
12 int create_random_name( char *the_pathp, int do_open );
13 void create_target_directory( const char * the_targetp );
14 void remove_target_directory( void );
15
16 #endif