diff options
author | Russ Allbery <eagle@eyrie.org> | 2021-09-04 13:01:38 -0700 |
---|---|---|
committer | Russ Allbery <eagle@eyrie.org> | 2021-09-04 13:01:38 -0700 |
commit | a5f322a55242a68613862d125d7fd0125b1c88bb (patch) | |
tree | 1473f8f0e28cc36ba8f1f5abbac8a4ef2f81b0bf /tests/docs/spdx-license-t | |
parent | acaa1794f08b0b8a42e9247f5186e00a888bd437 (diff) |
Fix deprecation warnings for new Autoconf
wallet should now work properly with Autoconf 2.71. This required
updating tests/docs/spdx-license-t from rra-c-util, which in turn
bumped the minimum required Perl version for the test suite to 5.10.
That's not yet reflected in the documentation.
Diffstat (limited to 'tests/docs/spdx-license-t')
-rwxr-xr-x | tests/docs/spdx-license-t | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/docs/spdx-license-t b/tests/docs/spdx-license-t index d829080..2841835 100755 --- a/tests/docs/spdx-license-t +++ b/tests/docs/spdx-license-t @@ -9,7 +9,7 @@ # The canonical version of this file is maintained in the rra-c-util package, # which can be found at <https://www.eyrie.org/~eagle/software/rra-c-util/>. # -# Copyright 2018-2020 Russ Allbery <eagle@eyrie.org> +# Copyright 2018-2021 Russ Allbery <eagle@eyrie.org> # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), @@ -31,7 +31,7 @@ # # SPDX-License-Identifier: MIT -use 5.008; +use 5.010; use strict; use warnings; @@ -51,6 +51,9 @@ my @IGNORE = ( qr{ \A (NEWS|THANKS|TODO) \z }xms, # Package license should be fine qr{ \A README ( [.] .* )? \z }xms, # Package license should be fine qr{ \A (Makefile|libtool) \z }xms, # Generated file + qr{ ~ \z }xms, # Backup files + qr{ [.] l?a \z }xms, # Created by libtool + qr{ [.] o \z }xms, # Compiler objects qr{ [.] output \z }xms, # Test data ); my @IGNORE_PATHS = ( @@ -74,8 +77,7 @@ my @IGNORE_PATHS = ( qr{ \A php/run-tests [.] php \z }xms, # Created by phpize qr{ \A python/ .* [.] egg-info/ }xms, # Python build files qr{ \A tests/config/ (?!README) }xms, # Test configuration - qr{ [.] l?a \z }xms, # Created by libtool - qr{ [.] o \z }xms, # Compiler objects + qr{ \A tests/tmp/ }xms, # Temporary test files ); ## use critic |