This website requires JavaScript.
Explore
Help
Register
Sign In
OpenWrt
/
packages
mirror of
https://git.openwrt.org/feed/packages.git
Watch
1
Star
0
Fork
You've already forked packages
0
Code
Issues
Projects
Releases
Wiki
Activity
6d73b8a09a
packages
/
utils
/
vim
/
test.sh
8 lines
88 B
Bash
Raw
Normal View
History
Unescape
Escape
vim: add runtime test Run test script to see if compiled binary prints sane output. Signed-off-by: Paul Spooren <mail@aparcar.org>
2020-09-19 07:17:23 +08:00
#!/bin/sh
vim: run test.sh only for vim{-full,-fuller} Previously the test.sh script would also run for the `vim-help` package which isn't a binary package but just a tar archive. Signed-off-by: Paul Spooren <mail@aparcar.org>
2020-10-10 09:28:51 +08:00
case
"
$1
"
in
vim
|
vim-full
|
vim-fuller
)
vim --version
|
grep
"
$2
"
;
;
esac