tests: fixup tests/data/Makefile.am references

Follow-up to f5b826532f #14357
Reported-by: Stefan Eissing
Fixes #14371
Closes #14372
This commit is contained in:
Viktor Szakats 2024-08-04 12:25:45 +02:00
parent 1556951c4b
commit 4f198c8525
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
3 changed files with 5 additions and 5 deletions

View file

@ -222,7 +222,7 @@ SPDX-License-Identifier: curl
up. Subsets of tests can now be selected by passing keywords to the
runtests.pl script via the make `TFLAGS` variable.
New tests are added by finding a free number in `tests/data/Makefile.inc`.
New tests are added by finding a free number in `tests/data/Makefile.am`.
## Write tests

View file

@ -329,8 +329,8 @@ if ($ENV{"NGHTTPX"}) {
my $disttests = "";
sub get_disttests {
# If a non-default $TESTDIR is being used there may not be any
# Makefile.inc in which case there's nothing to do.
open(my $dh, "<", "$TESTDIR/Makefile.inc") or return;
# Makefile.am in which case there's nothing to do.
open(my $dh, "<", "$TESTDIR/Makefile.am") or return;
while(<$dh>) {
chomp $_;
if(($_ =~ /^#/) ||($_ !~ /test/)) {
@ -1034,7 +1034,7 @@ sub singletest_shouldrun {
my @what; # what features are needed
if($disttests !~ /test$testnum(\W|\z)/ ) {
logmsg "Warning: test$testnum not present in tests/data/Makefile.inc\n";
logmsg "Warning: test$testnum not present in tests/data/Makefile.am\n";
}
if($disabled{$testnum}) {
if(!$run_disabled) {

View file

@ -37,7 +37,7 @@ source file. The source file should be named `unitNNNN.c` where `NNNN` is a
previously unused number.
Add your test to `tests/unit/Makefile.inc` (if it is a unit test). Add your
test data file name to `tests/data/Makefile.inc`
test data file name to `tests/data/Makefile.am`
You also need a separate file called `tests/data/testNNNN` (using the same
number) that describes your test case. See the test1300 file for inspiration