aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libaio/harness/cases/7.t
diff options
context:
space:
mode:
Diffstat (limited to 'tools/libaio/harness/cases/7.t')
-rw-r--r--tools/libaio/harness/cases/7.t27
1 files changed, 0 insertions, 27 deletions
diff --git a/tools/libaio/harness/cases/7.t b/tools/libaio/harness/cases/7.t
deleted file mode 100644
index d2d6cbc653..0000000000
--- a/tools/libaio/harness/cases/7.t
+++ /dev/null
@@ -1,27 +0,0 @@
-/* 7.t
-- Write overlapping the file size rlimit boundary: should be a short
- write. (7.t)
-- Write at the file size rlimit boundary: should give EFBIG. (I think
- the spec requires that you do NOT deliver SIGXFSZ in this case, where
- you would do so for sync IO.) (7.t)
-- Special case: a write of zero bytes at or beyond the file size rlimit
- boundary must return success. (7.t)
-*/
-
-#include <sys/resource.h>
-
-void SET_RLIMIT(long long limit)
-{
- struct rlimit rlim;
- int res;
-
- rlim.rlim_cur = limit; assert(rlim.rlim_cur == limit);
- rlim.rlim_max = limit; assert(rlim.rlim_max == limit);
-
- res = setrlimit(RLIMIT_FSIZE, &rlim); assert(res == 0);
-}
-
-#define LIMIT 8192
-#define FILENAME "testdir/rwfile"
-
-#include "common-7-8.h"