You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
946 B
37 lines
946 B
#!/bin/bash
|
|
|
|
source tests-common.sh
|
|
|
|
inherit linux-info
|
|
|
|
test_get_running_version() {
|
|
local test_kv=$1 major=$2 minor=$3 patch=$4 extra=$5
|
|
tbegin "get_running_version ${test_kv}"
|
|
uname() { echo "${test_kv}" ; }
|
|
ROOT=/:/:/:/: get_running_version
|
|
local r=$?
|
|
[[ ${r} -eq 0 &&
|
|
${major} == "${KV_MAJOR}" &&
|
|
${minor} == "${KV_MINOR}" &&
|
|
${patch} == "${KV_PATCH}" &&
|
|
${extra} == "${KV_EXTRA}" ]]
|
|
tend $? "FAIL: {ret: ${r}==0} {major: ${major}==${KV_MAJOR}} {minor: ${minor}==${KV_MINOR}} {patch: ${patch}==${KV_PATCH}} {extra: ${extra}==${KV_EXTRA}}"
|
|
}
|
|
|
|
tests=(
|
|
# KV_FULL MAJOR MINOR PATCH EXTRA
|
|
1.2.3 1 2 3 ''
|
|
1.2.3.4 1 2 3 .4
|
|
1.2.3-ver+1.4 1 2 3 -ver+1.4
|
|
1.2-kern.3 1 2 0 -kern.3
|
|
1.2+kern.5 1 2 0 +kern.5
|
|
1.2.3_blah 1 2 3 _blah
|
|
3.2.1-zen-vs2.3.2.5+ 3 2 1 -zen-vs2.3.2.5+
|
|
)
|
|
|
|
for (( i = 0; i < ${#tests[@]}; i += 5 )) ; do
|
|
test_get_running_version "${tests[@]:i:5}"
|
|
done
|
|
|
|
texit
|