diff options
author | David Stainton <dstainton415@gmail.com> | 2014-09-02 17:59:31 +0000 |
---|---|---|
committer | David Stainton <dstainton415@gmail.com> | 2014-09-02 18:08:57 +0000 |
commit | 6e4efb559d9921e44c40b99e69619d4fa8b36668 (patch) | |
tree | fdc9ed69c8002eb40711e56a4e4c2145b4032940 /src/test/test_checkdir.c | |
parent | 7caf7e9f2a26dfb425dab761b4b41a38d96db0af (diff) | |
download | tor-6e4efb559d9921e44c40b99e69619d4fa8b36668.tar.gz tor-6e4efb559d9921e44c40b99e69619d4fa8b36668.zip |
Fix white space
Diffstat (limited to 'src/test/test_checkdir.c')
-rw-r--r-- | src/test/test_checkdir.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/test/test_checkdir.c b/src/test/test_checkdir.c index 59c1783978..1580e6271d 100644 --- a/src/test/test_checkdir.c +++ b/src/test/test_checkdir.c @@ -43,7 +43,6 @@ test_checkdir_perms(void *testdata) tt_int_op(0, ==, (st.st_mode & unix_verify_optsmask)); tor_free(testdir); - /* test: create new dir, CPD_GROUP_READ option set. */ testdir = get_datadir_fname("checkdir_new_groupread"); cpd_chkopts = CPD_CREATE|CPD_GROUP_READ; @@ -53,7 +52,6 @@ test_checkdir_perms(void *testdata) tt_int_op(0, ==, (st.st_mode & unix_verify_optsmask)); tor_free(testdir); - /* test: check existing dir created with defaults, and verify with CPD_CREATE only. */ testdir = get_datadir_fname("checkdir_exists_none"); @@ -66,7 +64,6 @@ test_checkdir_perms(void *testdata) tt_int_op(0, ==, (st.st_mode & unix_verify_optsmask)); tor_free(testdir); - /* test: check existing dir created with defaults, and verify with CPD_GROUP_OK option set. */ testdir = get_datadir_fname("checkdir_exists_groupok"); @@ -79,7 +76,6 @@ test_checkdir_perms(void *testdata) tt_int_op(0, ==, (st.st_mode & unix_verify_optsmask)); tor_free(testdir); - /* test: check existing dir created with defaults, and verify with CPD_GROUP_READ option set. */ testdir = get_datadir_fname("checkdir_exists_groupread"); @@ -92,7 +88,6 @@ test_checkdir_perms(void *testdata) tt_int_op(0, ==, (st.st_mode & unix_verify_optsmask)); tor_free(testdir); - /* test: check existing dir created with CPD_GROUP_READ, and verify with CPD_GROUP_OK option set. */ testdir = get_datadir_fname("checkdir_existsread_groupok"); @@ -105,7 +100,6 @@ test_checkdir_perms(void *testdata) tt_int_op(0, ==, (st.st_mode & unix_verify_optsmask)); tor_free(testdir); - /* test: check existing dir created with CPD_GROUP_READ, and verify with CPD_GROUP_READ option set. */ testdir = get_datadir_fname("checkdir_existsread_groupread"); |