blob: 7f04f55ce302f4b3aa86cf008252b0146ee4591e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/usr/bin/env bash
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
source tests-common.sh || exit
inherit dist-kernel-utils
# TODO: hack because tests-common don't implement ver_cut
EAPI=6 inherit eapi7-ver
test_PV_to_KV() {
local kv=${1}
local exp_PV=${2}
tbegin "dist-kernel_PV_to_KV ${kv} -> ${exp_PV}"
local val=$(dist-kernel_PV_to_KV "${kv}")
[[ ${val} == ${exp_PV} ]]
tend $?
}
test_PV_to_KV 6.0_rc1 6.0.0-rc1
test_PV_to_KV 6.0 6.0.0
test_PV_to_KV 6.0.1_rc1 6.0.1-rc1
test_PV_to_KV 6.0.1 6.0.1
texit
|