forked from aniani/vim
Problem: Insufficient testing for syntax plugins.
Solution: Add shell file examples. (Charles Campbell) Create a messages
file for easier debugging and reporting the test results.
20 lines
483 B
Bash
20 lines
483 B
Bash
#!/bin/sh
|
|
# Test file for vim the check () subshells
|
|
( cd ; $pwd ) | wc -c
|
|
( cd $1 ; $pwd ) | wc -c
|
|
( cd ${1} ; $pwd ) | wc -c
|
|
( cd ; $pwd ) | wc -c
|
|
( cd ${1:-.} ; $pwd ) | sed -e 's!$!/!' -e 's!//*$!/!'
|
|
( cd ; $pwd ) | wc -c
|
|
( cd ${1:+.} ; $pwd ) | wc -c
|
|
( cd ; $pwd ) | wc -c
|
|
( cd ${1:=.} ; $pwd ) | wc -c
|
|
( cd ; $pwd ) | wc -c
|
|
( cd ${1:?} ; $pwd ) | wc -c
|
|
( cd ; $pwd ) | wc -c
|
|
( cd $HOME ; $pwd ) | wc -c
|
|
( cd ${HOME} ; $pwd ) | wc -c
|
|
( cd ${HOME} ) | wc -c
|
|
((n=1+2))
|
|
let n=1+2
|