projects
/
onyx.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a01d4be
)
hopefully fixed bug with github actions printing lots of crap
author
Brendan Hansen
<brendan.f.hansen@gmail.com>
Wed, 20 Jan 2021 20:27:07 +0000
(14:27 -0600)
committer
Brendan Hansen
<brendan.f.hansen@gmail.com>
Wed, 20 Jan 2021 20:27:07 +0000
(14:27 -0600)
bin/test
patch
|
blob
|
history
diff --git
a/bin/test
b/bin/test
index e5408703ed592179c2f8ce2cd282946b27d216ec..ad67c6fa7ac0383a034618764c4fd2ebcfe23e64 100755
(executable)
--- a/
bin/test
+++ b/
bin/test
@@
-1,14
+1,13
@@
#!/bin/sh
print_check() {
- if [ ! -z "$TERM
" ]; then
+ if [ ! -z "$TERM" ]; then
printf "%-$((($(tput cols) - 8)))s" "⏲ Checking $1.onyx" ;
else
printf "%s ... " "⏲ Checking $1.onyx" ;
fi
}
-
failed=0
for test_file in $(find tests/ -name '*.onyx'); do
filename=$(basename -- "$test_file")