aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <miklos@szeredi.hu>2005-10-03 14:54:24 +0000
committerGravatar Miklos Szeredi <miklos@szeredi.hu>2005-10-03 14:54:24 +0000
commit2bb750e71cc0bb04bcf7e76e0069d72c866630fb (patch)
treec23c876357e653f2ef719125f05467a6d60cd7d3 /test
parent836ab71baf1a8da35a245500057a3a8bee1d769d (diff)
trailing whitespace fix
Diffstat (limited to 'test')
-rw-r--r--test/test.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/test.c b/test/test.c
index 3fba745..6a82467 100644
--- a/test/test.c
+++ b/test/test.c
@@ -550,10 +550,10 @@ static int do_test_open(int exist, int flags, const char *flags_str, int mode)
res = create_file(testfile, testdata2, testdata2len);
if (res == -1)
return -1;
-
+
currlen = testdata2len;
}
-
+
fd = open(testfile, flags, mode);
if ((flags & O_CREAT) && (flags & O_EXCL) && exist) {
if (fd != -1) {
@@ -578,12 +578,12 @@ static int do_test_open(int exist, int flags, const char *flags_str, int mode)
if (flags & O_TRUNC)
currlen = 0;
-
+
err += check_type(testfile, S_IFREG);
if (exist)
err += check_mode(testfile, 0644);
else
- err += check_mode(testfile, mode);
+ err += check_mode(testfile, mode);
err += check_nlink(testfile, 1);
err += check_size(testfile, currlen);
if (exist && !(flags & O_TRUNC) && (mode & 0400))
@@ -602,7 +602,7 @@ static int do_test_open(int exist, int flags, const char *flags_str, int mode)
currlen = datalen;
err += check_size(testfile, currlen);
-
+
if (mode & 0400) {
err += check_data(testfile, data, 0, datalen);
if (exist && !(flags & O_TRUNC) && testdata2len > datalen)
@@ -699,7 +699,7 @@ static int do_test_open_acc(int flags, const char *flags_str, int mode, int err)
PERROR("chmod");
return -1;
}
-
+
res = check_mode(testfile, mode);
if (res == -1)
return -1;
@@ -943,7 +943,7 @@ int main(int argc, char *argv[])
}
basepath = argv[1];
assert(strlen(basepath) < 512);
-
+
sprintf(testfile, "%s/testfile", basepath);
sprintf(testfile2, "%s/testfile2", basepath);
sprintf(testdir, "%s/testdir", basepath);
@@ -1001,7 +1001,7 @@ int main(int argc, char *argv[])
err += test_open_acc(O_RDONLY, 0000, EACCES);
err += test_open_acc(O_WRONLY, 0000, EACCES);
err += test_open_acc(O_RDWR, 0000, EACCES);
-
+
unlink(testfile);
unlink(testfile2);
rmdir(testdir);