From: Zbigniew Jędrzejewski-Szmek Date: Thu, 18 Jul 2019 11:11:44 +0000 (+0200) Subject: test-fs-util: call test functions in order of declaration X-Git-Tag: v243-rc1~77^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f20319402af8136da61b2fa211f4c8e9834c3c00;p=thirdparty%2Fsystemd.git test-fs-util: call test functions in order of declaration --- diff --git a/src/test/test-fs-util.c b/src/test/test-fs-util.c index 85d679826fc..7cf4f4976bc 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();