From f20319402af8136da61b2fa211f4c8e9834c3c00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Thu, 18 Jul 2019 13:11:44 +0200 Subject: [PATCH] test-fs-util: call test functions in order of declaration --- src/test/test-fs-util.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 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_unlink_noerrno(); - test_get_files_in_directory(); - test_readlink_and_make_absolute(); - test_var_tmp(); test_chase_symlinks(); + test_unlink_noerrno(); + test_readlink_and_make_absolute(); + test_get_files_in_directory(); + test_var_tmp(); test_dot_or_dot_dot(); test_access_fd(); test_touch_file();