]> git.saurik.com Git - apple/xnu.git/blob - tools/tests/darwintests/xnu_quick_test_helpers.h
xnu-4570.61.1.tar.gz
[apple/xnu.git] / tools / tests / darwintests / 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