From: Mostyn Bramley-Moore Date: Sun, 27 Oct 2024 15:43:59 +0000 (+0100) Subject: Rename bsdtar test_extract_tar_absolute_paths source file for consistency (#2400) X-Git-Tag: v3.8.0~126 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87fa7336799e44e1c4b4638056bf780173e3eca4;p=thirdparty%2Flibarchive.git Rename bsdtar test_extract_tar_absolute_paths source file for consistency (#2400) The `-P` flag is uppercase, so the test file should be named test_option_P_upper.c for consistency with the other test files in this directory. Sorry about the noise. --- diff --git a/Makefile.am b/Makefile.am index c4537beab..c72ed70f7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1132,7 +1132,7 @@ bsdtar_test_SOURCES= \ tar/test/test_option_H_upper.c \ tar/test/test_option_L_upper.c \ tar/test/test_option_O_upper.c \ - tar/test/test_option_P.c \ + tar/test/test_option_P_upper.c \ tar/test/test_option_T_upper.c \ tar/test/test_option_U_upper.c \ tar/test/test_option_X_upper.c \ diff --git a/tar/test/CMakeLists.txt b/tar/test/CMakeLists.txt index 8d0ba4ad3..6a99b656b 100644 --- a/tar/test/CMakeLists.txt +++ b/tar/test/CMakeLists.txt @@ -35,7 +35,7 @@ IF(ENABLE_TAR AND ENABLE_TEST) test_option_H_upper.c test_option_L_upper.c test_option_O_upper.c - test_option_P.c + test_option_P_upper.c test_option_T_upper.c test_option_U_upper.c test_option_X_upper.c diff --git a/tar/test/test_option_P.c b/tar/test/test_option_P_upper.c similarity index 100% rename from tar/test/test_option_P.c rename to tar/test/test_option_P_upper.c