Skip to content

Commit

Permalink
Remove various comments related to bash versions we don't support
Browse files Browse the repository at this point in the history
  • Loading branch information
scop committed Feb 28, 2016
1 parent 18ca938 commit ffdc9da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions doc/testing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ git pull

# Run tests on bash-4

./runUnit --outdir log/bash-4 --tool_exec /opt/bash-4.0/bin/bash > $LOG || cat $LOG
./runCompletion --outdir log/bash-4 --tool_exec /opt/bash-4.0/bin/bash > $LOG || cat $LOG
./runUnit --outdir log/bash-4 --tool_exec /opt/bash-4.3/bin/bash > $LOG || cat $LOG
./runCompletion --outdir log/bash-4 --tool_exec /opt/bash-4.3/bin/bash > $LOG || cat $LOG

# Clean up log file
[ -f $LOG ] && rm $LOG
Expand All @@ -207,7 +207,7 @@ Using `--tool_exec` you can specify which bash binary you want to run the test
suite against, e.g.:

----------------
./runUnit --tool_exec /opt/bash-4.0/bin/bash
./runUnit --tool_exec /opt/bash-4.3/bin/bash
----------------


Expand Down
2 changes: 1 addition & 1 deletion test/run
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ usage() {
echo " --tool_exec= Test against a different bash executable."
echo " --debug Create a dbg.log in the test directory with detailed expect match information."
echo " --timeout Change expect timeout from the default of 10 seconds."
echo " --debug-xtrace Create an xtrace.log in the test directory with set -x output. Requires bash 4.1."
echo " --debug-xtrace Create an xtrace.log in the test directory with set -x output."
echo
echo "Example run: ./run unit/_get_cword.exp unit/compgen.exp"
}
Expand Down

0 comments on commit ffdc9da

Please sign in to comment.