summaryrefslogtreecommitdiff
path: root/tests/test_driver.pl
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2023-01-08 18:06:54 -0500
committerPaul Smith <psmith@gnu.org>2023-01-08 18:06:54 -0500
commit36f955b0e8d2c1b5be292eb84475c44eea6403c8 (patch)
treef6a545954d76b34db79b96ce6644429b9a674253 /tests/test_driver.pl
parenta275f4e9ab14a2ff827b67b46dd3bc746cdba328 (diff)
downloadmake-git-36f955b0e8d2c1b5be292eb84475c44eea6403c8.tar.gz
[SV 17448] Ignore whitespace around $(file ...) names
The other issues related to whitespace reported in this bug are not addressed by this change. * src/functions.c (func_file): Strip whitespace from the start and end of the filename provided to the $(file ...) function. * tests/scripts/functions/file: Add tests for this. * tests/test_driver.pl: Use 3-arg version of open().
Diffstat (limited to 'tests/test_driver.pl')
-rw-r--r--tests/test_driver.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_driver.pl b/tests/test_driver.pl
index e7e57763..38ec4587 100644
--- a/tests/test_driver.pl
+++ b/tests/test_driver.pl
@@ -434,7 +434,7 @@ sub get_osname
# See if the filesystem supports long file names with multiple
# dots. DOS doesn't.
$short_filenames = 0;
- (open (TOUCHFD, "> fancy.file.name") and close (TOUCHFD))
+ (open (TOUCHFD, '>', 'fancy.file.name') and close (TOUCHFD))
or $short_filenames = 1;
unlink ("fancy.file.name") or $short_filenames = 1;
@@ -1287,7 +1287,7 @@ sub remove_directory_tree_inner
#
# foreach my $file (@filenames) {
# utime ($now, $now, $file)
-# or (open (TOUCHFD, ">> $file") and close (TOUCHFD))
+# or (open (TOUCHFD, '>>', $file) and close (TOUCHFD))
# or &error ("Couldn't touch $file: $!\n", 1);
# }
# return 1;
@@ -1334,7 +1334,7 @@ sub create_file
{
my ($filename, @lines) = @_;
- open (CF, "> $filename") or &error ("Couldn't open $filename: $!\n", 1);
+ open (CF, '>', $filename) or &error ("Couldn't open '$filename': $!\n", 1);
foreach $line (@lines) {
print CF $line;
}