diff options
author | Yang Tse <yangsita@gmail.com> | 2011-09-05 12:39:50 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-09-05 12:39:50 +0200 |
commit | eb44ac013832aab80c3ed90292d7b4f25a8a4d75 (patch) | |
tree | c8d8d8ea4d40ff74d2a3150e127b643f23076be8 /tests/runtests.pl | |
parent | d52f3eb598967fe101d7bc50b0fe2bb4d38542dc (diff) | |
download | curl-eb44ac013832aab80c3ed90292d7b4f25a8a4d75.tar.gz |
test suite: use test case specific netrc file names
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-x | tests/runtests.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 773e5652a..db5023960 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -4280,6 +4280,9 @@ sub displaylogs { if(($log =~ /^file\d+\.txt/) && ($log !~ /^file$testnum\.txt/)) { next; # skip fileNnn.txt of other tests } + if(($log =~ /^netrc\d+/) && ($log !~ /^netrc$testnum/)) { + next; # skip netrcNnn of other tests + } if(($log =~ /^valgrind\d+/) && ($log !~ /^valgrind$testnum(\..*|)$/)) { next; # skip valgrindNnn of other tests } |