summaryrefslogtreecommitdiff
path: root/test/script/check-supported-tools-tables
AgeCommit message (Collapse)Author
2020-11-28Fix test/script/check-supported-tools-tablesKevin Clark
2020-11-27Fix check-supported-tools-tables checkKevin Clark
sed wasn't using -E, so '|' wasn't being handled properly. Seems likely that's sed-implementation specific, so now it runs through docker's sed to support portability.
2019-08-13Update test docs and output for linter tables checkedEddie Lebow
This makes some of the run-test output less misleading. Also fix a minor shellcheck issue: "\*" and "\\*" are equivalent, but the second one makes clear that the literal backslash is intentional.
2019-05-12Force sort locale in check-supported-tools-tablesTomas Janousek
Otherwise it reports that the list isn't sorted properly if user's LANG is different.
2019-02-11Rewrite the supported tools lists in new filesw0rp
2018-07-22Revert "Update the tests to check README.md in the new location"w0rp
This reverts commit 6c10be8992b9a54e83bab58838c1553d36028c7e.
2018-07-22Update the tests to check README.md in the new locationw0rp
2018-05-01Update run-tests to make use of /usr/bin/env (#1548)Bjorn Neergaard
* Update run-tests to make use of /usr/bin/env * Update run-vint * Update run-vader-tests * Update custom-linting-rules * Update custom-checks * Update check-toc * Update check-supported-tools-tables
2017-10-22Update test scripts to work on OS XGustav Munkby
There were a couple of issues - `paste` requires a file argument - `mktemp` requires a pattern argument - `sort` doesn't support `-h`, but `-n` is enough for sorting on numbers, and `-s` was introduced to perform a stable sort instead. The main issues were that BSD `sed` does not support: - Alternation (`\|`) - solved by splitting to multiple patterns - Bound shortcuts (`x\+`, `x\?`) - solved by replacing with `xx*` and `x\{0,1\}` respectively - Lower-casing (`\L`) - solved by piping through `tr` instead (this will lowercase everything and not only the integration names, but I assumed that wasn't too much of an issue, as a portable alternative for the selective downcasing would be much more involved).
2017-09-28Fix an issue with the check-supported-tools-tables scriptw0rp
2017-09-10Move scripts for tests into the test directory, and do not export the Batch ↵w0rp
script for running tests