1. 20 Nov, 2023 5 commits
    • Walid Boudebouda's avatar
    • Walid Boudebouda's avatar
      vav: Don't reject individually quoted arguments · 57c23063
      Walid Boudebouda authored
      Cli command '"help" "help"' was wrongly rejected with error
      message: "Missing separator between arguments"
      57c23063
    • Walid Boudebouda's avatar
      vav_test: Also print test results when failing as expected · 35546e56
      Walid Boudebouda authored
      Output before:
      
      PASS: <> with flags 7 as expected.
      PASS: <foo> with flags 0 as expected.
      PASS: <foo bar> with flags 0 as expected.
      PASS: <foo bar> with flags 2 as expected.
      PASS: <foo,bar> with flags 2 as expected.
      PASS: <  foo  bar  > with flags 0 as expected.
      PASS: <  foo  ,  bar  > with flags 2 as expected.
      PASS: <foo bar > with flags 2 as expected.
      PASS: <foo,bar,> with flags 2 as expected.
      PASS: <foo "bar baz"> with flags 0 as expected.
      PASS: <foo #bar> with flags 0 as expected.
      PASS: <foo #bar> with flags 1 as expected.
      PASS: <foo#bar> with flags 0 as expected.
      PASS: <foo#bar> with flags 1 as expected.
      PASS: <\> with flags 4 as expected.
      PASS: <\x20> with flags 0 as expected.
      PASS: <foo"bar> with flags 4 as expected.
      PASS: <"foo""bar"> with flags 4 as expected.
      
      Output after:
      
      PASS: <> with flags 7 as expected.
      PASS: <foo> with flags 0 as expected.
      PASS: <foo bar> with flags 0 as expected.
      PASS: <foo bar> with flags 2 as expected.
      PASS: <foo,bar> with flags 2 as expected.
      PASS: <  foo  bar  > with flags 0 as expected.
      PASS: <  foo  ,  bar  > with flags 2 as expected.
      PASS: <foo bar > with flags 2 as expected.
      PASS: <foo,bar,> with flags 2 as expected.
      PASS: <foo "bar baz"> with flags 0 as expected.
      PASS: <foo #bar> with flags 0 as expected.
      PASS: <foo #bar> with flags 1 as expected.
      PASS: <foo#bar> with flags 0 as expected.
      PASS: <foo#bar> with flags 1 as expected.
      PASS: <\> with flags 4 as expected.
      FAIL: <\> with flags 0 as expected.
      FAIL: <\x> with flags 0 as expected.
      FAIL: <\x2> with flags 0 as expected.
      FAIL: <\x2O> with flags 0 as expected.
      PASS: <\x20> with flags 0 as expected.
      FAIL: <"foo> with flags 0 as expected.
      PASS: <foo"bar> with flags 4 as expected.
      FAIL: <foo"bar> with flags 0 as expected.
      FAIL: <foo"bar> with flags 0 as expected.
      PASS: <"foo""bar"> with flags 4 as expected.
      FAIL: <"foo""bar"> with flags 0 as expected.
      35546e56
    • Walid Boudebouda's avatar
      631fb37b
    • Walid Boudebouda's avatar
      vav_test: Return non-zero when a test fails · b4fce772
      Walid Boudebouda authored
      Currently, vav_test always passes make check
      b4fce772
  2. 13 Nov, 2023 1 commit
  3. 25 Oct, 2023 2 commits
  4. 24 Oct, 2023 1 commit
  5. 23 Oct, 2023 2 commits
  6. 20 Oct, 2023 1 commit
  7. 18 Oct, 2023 13 commits
  8. 17 Oct, 2023 7 commits
  9. 16 Oct, 2023 1 commit
  10. 13 Oct, 2023 2 commits
  11. 11 Oct, 2023 3 commits
  12. 06 Oct, 2023 1 commit
  13. 04 Oct, 2023 1 commit
    • Nils Goroll's avatar
      Renovate autoconf and varnish.m4 · 8997e88d
      Nils Goroll authored
      this is required for autoconf 2.71, but I have kept the required
      version at 2.69 and tested that the changes are compatible.
      
      Most of the changes come from autoupdate, with this change:
      
      AC_PROG_CC_STDC is obsolete, but older autoconf versions
      do not set the highest possible c standard.
      
      So we keep AC_PROG_CC_C99 because we actually require
      c99, while AC_PROG_CC_STDC could fall back to c89
      
      For varnish.m4, we should apply the same canonical settings
      as for varnishd itself
      8997e88d