diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-07-18 13:11:44 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-07-19 16:51:14 +0200 |
commit | f20319402af8136da61b2fa211f4c8e9834c3c00 (patch) | |
tree | c36994d062dd935aa4dcbcca8c40b9ac4c9710ad /src/test | |
parent | 5cfa33e0bc36ffe962501f67259044a636e15707 (diff) | |
download | systemd-f20319402af8136da61b2fa211f4c8e9834c3c00.tar.gz systemd-f20319402af8136da61b2fa211f4c8e9834c3c00.tar.bz2 systemd-f20319402af8136da61b2fa211f4c8e9834c3c00.zip |
test-fs-util: call test functions in order of declaration
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test-fs-util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/test-fs-util.c b/src/test/test-fs-util.c index 85d679826f..7cf4f4976b 100644 --- a/src/test/test-fs-util.c +++ b/src/test/test-fs-util.c @@ -795,11 +795,11 @@ int main(int argc, char *argv[]) { arg_test_dir = argv[1]; + test_chase_symlinks(); test_unlink_noerrno(); - test_get_files_in_directory(); test_readlink_and_make_absolute(); + test_get_files_in_directory(); test_var_tmp(); - test_chase_symlinks(); test_dot_or_dot_dot(); test_access_fd(); test_touch_file(); |