aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libaio/harness/cases/common-7-8.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/libaio/harness/cases/common-7-8.h')
-rw-r--r--tools/libaio/harness/cases/common-7-8.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/tools/libaio/harness/cases/common-7-8.h b/tools/libaio/harness/cases/common-7-8.h
deleted file mode 100644
index 3ec2bb439d..0000000000
--- a/tools/libaio/harness/cases/common-7-8.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/* common-7-8.h
-*/
-#include "aio_setup.h"
-
-#include <unistd.h>
-
-#define SIZE 512
-
-int test_main(void)
-{
- char *buf;
- int rwfd;
- int status = 0, res;
- long long limit;
-
- rwfd = open(FILENAME, O_RDWR); assert(rwfd != -1);
- res = ftruncate(rwfd, 0); assert(res == 0);
- buf = malloc(SIZE); assert(buf != NULL);
- memset(buf, 0, SIZE);
-
- limit = LIMIT;
-
- SET_RLIMIT(limit);
-
- status |= attempt_rw(rwfd, buf, SIZE, limit-SIZE, WRITE, SIZE);
- status |= attempt_rw(rwfd, buf, SIZE, limit-SIZE, READ, SIZE);
-
- status |= attempt_rw(rwfd, buf, SIZE, 1+limit-SIZE, WRITE, SIZE-1);
- status |= attempt_rw(rwfd, buf, SIZE, 1+limit-SIZE, READ, SIZE-1);
-
- status |= attempt_rw(rwfd, buf, SIZE, limit, WRITE, -EFBIG);
- status |= attempt_rw(rwfd, buf, SIZE, limit, READ, 0);
- status |= attempt_rw(rwfd, buf, 0, limit, WRITE, 0);
-
- return status;
-}
-