This is xnu-11215.1.10. See this file in:
#include "perf_index.h"
#include "fail.h"
#include "test_file_helper.h"
#include <stdio.h>
#include <sys/param.h>
#include <unistd.h>
char tempdir[MAXPATHLEN];
DECL_SETUP {
char* retval;
retval = setup_tempdir(tempdir);
VERIFY(retval, "tempdir setup failed");
printf("tempdir: %s\n", tempdir);
return test_file_write_setup(tempdir, num_threads, length);
}
DECL_TEST {
return test_file_write(tempdir, thread_id, num_threads, length, 0L);
}
DECL_CLEANUP {
int retval;
retval = test_file_write_cleanup(tempdir, num_threads, length);
VERIFY(retval == PERFINDEX_SUCCESS, "test_file_read_cleanup failed");
retval = cleanup_tempdir(tempdir);
VERIFY(retval == 0, "cleanup_tempdir failed");
return PERFINDEX_SUCCESS;
}