nalgeon / sqlean

The ultimate set of SQLite extensions
MIT License
3.75k stars 120 forks source link

test: fix grep invocation on test suite #20

Closed vincentbernat closed 3 years ago

vincentbernat commented 3 years ago

Use of \d+ requires use of PCREs. Extended regular expressions include +, but not \d.

Also, normalize a bit the negation of grep result: on a pipeline, the exit status is the one of the last command. You can negate it by putting ! in front of the pipeline.

vincentbernat commented 3 years ago

Replaced in favor of #21. If you don't want #21, this one needs to be amended to use the test rule from #21.