Github user zwoop commented on a diff in the pull request:

    https://github.com/apache/trafficserver/pull/1133#discussion_r84723539
  
    --- Diff: plugins/header_rewrite/header_rewrite_test.cc ---
    @@ -31,274 +33,395 @@ const char PLUGIN_NAME_DBG[] = 
"TEST_dbg_header_rewrite";
     extern "C" void
     TSError(const char *fmt, ...)
     {
    -  char buf[2048];
    -  int bytes = 0;
    -  va_list args;
    -  va_start(args, fmt);
    -  if ((bytes = vsnprintf(buf, sizeof(buf), fmt, args)) > 0) {
    -    fprintf(stderr, "TSError: %s: %.*s\n", PLUGIN_NAME, bytes, buf);
    -  }
    -  va_end(args);
    --- End diff --
    
    So, the issue was that there are two test cases that are intended to fail. 
When running this from command line (to verify / analyze tests), it would 
therefore always produce two errors on the output. I found this confusing as 
hell, thinking that the parser was actually failing (which it was not). So, I 
removed this, so it produces no output, and instead the test now properly 
detect the errors, and produce more useful information when they do fail 
unexpectedly.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to