curl / Mailing Lists / curl-library / Single Mail
Buy commercial curl support from WolfSSL. We help you work out your issues, debug your libcurl applications, use the API, port to new platforms, add new features and more. With a team lead by the curl founder himself.

Re: TESTFAIL: These test cases failed: 1167

From: Daniel Stenberg via curl-library <curl-library_at_cool.haxx.se>
Date: Mon, 21 Dec 2020 22:49:30 +0100 (CET)

On Mon, 21 Dec 2020, Dennis Clarke via curl-library wrote:

> Ah ha, well that provides endless buckets of information.

It seems the script doesn't properly ignore lines with nothing but a single
hash ('#') sign on them. My proposed patch:

diff --git a/tests/badsymbols.pl b/tests/badsymbols.pl
index bad037975..e609633bb 100755
--- a/tests/badsymbols.pl
+++ b/tests/badsymbols.pl
_at__at_ -88,10 +88,13 _at__at_ sub scanenums {
              next;
          }
          if($skipit) {
              next;
          }
+ if (/^\#\s*\z/) {
+ next;
+ }
          if ( /enum\s+(\S+\s+)?{/ .. /}/ ) {
              s/^\s+//;
              chomp;
              s/[,\s].*//;
              if(($_ !~ /\}(;|)/) &&


-- 
  / daniel.haxx.se
  | Commercial curl support up to 24x7 is available!
  | Private help, bug fixes, support, ports, new features
  | https://www.wolfssl.com/contact/
-------------------------------------------------------------------
Unsubscribe: https://cool.haxx.se/list/listinfo/curl-library
Etiquette:   https://curl.se/mail/etiquette.html
Received on 2020-12-21