(testsuite) Indentation fixes.

This commit is contained in:
Ville Skyttä 2010-01-03 15:56:00 +02:00
parent 3d43cdfd2b
commit 360b3dbe19

View File

@ -43,17 +43,17 @@ echo_array() {
# @param $3 (integer) Patch level
# @return 0 if success, > 0 if not
is_bash_version_minimal() {
[[ (
${BASH_VERSINFO[0]} -gt $1
) || (
${BASH_VERSINFO[0]} -eq $1 &&
${BASH_VERSINFO[1]} -gt $2
) || (
${BASH_VERSINFO[0]} -eq $1 &&
${BASH_VERSINFO[1]} -eq $2 &&
${BASH_VERSINFO[2]} -ge $3
)
]]
[[ (
${BASH_VERSINFO[0]} -gt $1
) || (
${BASH_VERSINFO[0]} -eq $1 &&
${BASH_VERSINFO[1]} -gt $2
) || (
${BASH_VERSINFO[0]} -eq $1 &&
${BASH_VERSINFO[1]} -eq $2 &&
${BASH_VERSINFO[2]} -ge $3
)
]]
} # is_bash_version_minimal()