aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRaymond Ha <raymond@shraymonks.com>2022-12-07 10:47:08 -0800
committerStephan Seitz <stephan.seitz@fau.de>2022-12-13 21:09:54 +0100
commit30a45fc76bce58d436a5c2a460c2e90c68530c7e (patch)
tree93aab98cf8813a6ef2b99cdb386bb27f9a730509 /scripts
parentUpdate lockfile.json (#3966) (diff)
downloadnvim-treesitter-30a45fc76bce58d436a5c2a460c2e90c68530c7e.tar
nvim-treesitter-30a45fc76bce58d436a5c2a460c2e90c68530c7e.tar.gz
nvim-treesitter-30a45fc76bce58d436a5c2a460c2e90c68530c7e.tar.bz2
nvim-treesitter-30a45fc76bce58d436a5c2a460c2e90c68530c7e.tar.lz
nvim-treesitter-30a45fc76bce58d436a5c2a460c2e90c68530c7e.tar.xz
nvim-treesitter-30a45fc76bce58d436a5c2a460c2e90c68530c7e.tar.zst
nvim-treesitter-30a45fc76bce58d436a5c2a460c2e90c68530c7e.zip
test: Add test name to summary output
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/run_tests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/run_tests.sh b/scripts/run_tests.sh
index 4db68190c..c6660a7f6 100755
--- a/scripts/run_tests.sh
+++ b/scripts/run_tests.sh
@@ -10,7 +10,7 @@ run() {
if [[ $2 = '--summary' ]]; then
## really simple results summary by filtering plenary busted output
- run tests/$1 2> /dev/null | grep -E '^\S*(Success|Fail(ed)?|Errors?)\s*:'
+ run tests/$1 2> /dev/null | grep -E '^\S*(Testing|Success|Failed|Errors)\s*:'
else
run tests/$1
fi