summaryrefslogtreecommitdiff
path: root/libaio-0.3.109/harness/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'libaio-0.3.109/harness/main.c')
-rw-r--r--libaio-0.3.109/harness/main.c40
1 files changed, 40 insertions, 0 deletions
diff --git a/libaio-0.3.109/harness/main.c b/libaio-0.3.109/harness/main.c
new file mode 100644
index 0000000..9ecd5da
--- /dev/null
+++ b/libaio-0.3.109/harness/main.c
@@ -0,0 +1,40 @@
+#define _GNU_SOURCE
+#include <stdio.h>
+#include <errno.h>
+#include <assert.h>
+#include <stdlib.h>
+
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <fcntl.h>
+#include <unistd.h>
+
+#include <libaio.h>
+
+#if __LP64__ == 0
+#define KERNEL_RW_POINTER ((void *)0xc0010000)
+#else
+//#warning Not really sure where kernel memory is. Guessing.
+#define KERNEL_RW_POINTER ((void *)0xffffffff81000000)
+#endif
+
+
+char test_name[] = TEST_NAME;
+
+#include TEST_NAME
+
+int main(void)
+{
+ int res;
+
+#if defined(SETUP)
+ SETUP;
+#endif
+
+ res = test_main();
+ printf("test %s completed %s.\n", test_name,
+ res ? "FAILED" : "PASSED"
+ );
+ fflush(stdout);
+ return res ? 1 : 0;
+}