summaryrefslogtreecommitdiff
path: root/src/test/test-util.c
diff options
context:
space:
mode:
authorRonny Chevalier <chevalier.ronny@gmail.com>2016-03-03 00:28:29 +0100
committerRonny Chevalier <chevalier.ronny@gmail.com>2016-03-03 19:04:06 +0100
commitac933e8ec4eda7ba1fa387fce7bebdb3d4390b30 (patch)
tree699e01a503faf347027d156dba307c95c3cab738 /src/test/test-util.c
parentd376cbb7b0aef14b4026d8fe58f65cec6835003d (diff)
tests: move io-util related tests to test-io-util
Diffstat (limited to 'src/test/test-util.c')
-rw-r--r--src/test/test-util.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/test/test-util.c b/src/test/test-util.c
index 50bb0211be..4eb17e47e5 100644
--- a/src/test/test-util.c
+++ b/src/test/test-util.c
@@ -32,7 +32,6 @@
#include "fileio.h"
#include "fs-util.h"
#include "glob-util.h"
-#include "io-util.h"
#include "mkdir.h"
#include "parse-util.h"
#include "path-util.h"
@@ -295,42 +294,6 @@ static void test_raw_clone(void) {
}
}
-static void test_sparse_write_one(int fd, const char *buffer, size_t n) {
- char check[n];
-
- assert_se(lseek(fd, 0, SEEK_SET) == 0);
- assert_se(ftruncate(fd, 0) >= 0);
- assert_se(sparse_write(fd, buffer, n, 4) == (ssize_t) n);
-
- assert_se(lseek(fd, 0, SEEK_CUR) == (off_t) n);
- assert_se(ftruncate(fd, n) >= 0);
-
- assert_se(lseek(fd, 0, SEEK_SET) == 0);
- assert_se(read(fd, check, n) == (ssize_t) n);
-
- assert_se(memcmp(buffer, check, n) == 0);
-}
-
-static void test_sparse_write(void) {
- const char test_a[] = "test";
- const char test_b[] = "\0\0\0\0test\0\0\0\0";
- const char test_c[] = "\0\0test\0\0\0\0";
- const char test_d[] = "\0\0test\0\0\0test\0\0\0\0test\0\0\0\0\0test\0\0\0test\0\0\0\0test\0\0\0\0\0\0\0\0";
- const char test_e[] = "test\0\0\0\0test";
- _cleanup_close_ int fd = -1;
- char fn[] = "/tmp/sparseXXXXXX";
-
- fd = mkostemp(fn, O_CLOEXEC);
- assert_se(fd >= 0);
- unlink(fn);
-
- test_sparse_write_one(fd, test_a, sizeof(test_a));
- test_sparse_write_one(fd, test_b, sizeof(test_b));
- test_sparse_write_one(fd, test_c, sizeof(test_c));
- test_sparse_write_one(fd, test_d, sizeof(test_d));
- test_sparse_write_one(fd, test_e, sizeof(test_e));
-}
-
static void test_fgetxattrat_fake(void) {
char t[] = "/var/tmp/xattrtestXXXXXX";
_cleanup_close_ int fd = -1;
@@ -378,7 +341,6 @@ int main(int argc, char *argv[]) {
test_glob_exists();
test_execute_directory();
test_raw_clone();
- test_sparse_write();
test_fgetxattrat_fake();
return 0;