diff options
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 |