2017-07-02 22:38:32 +03:00
#!/usr/bin/env bash
2014-05-27 18:51:57 +04:00
# Copyright (C) 2014 Red Hat, Inc. All rights reserved.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
2016-01-21 13:49:46 +03:00
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2014-05-27 18:51:57 +04:00
2014-05-28 17:41:06 +04:00
# Test 'Found duplicate' is shown
2018-05-24 17:49:48 +03:00
2015-10-27 17:10:06 +03:00
SKIP_WITH_LVMPOLLD = 1
2014-05-27 18:51:57 +04:00
2015-10-27 17:10:06 +03:00
. lib/inittest
2015-05-09 02:59:18 +03:00
2014-05-27 18:51:57 +04:00
aux prepare_devs 3
pvcreate " $dev1 "
UUID1 = $( get pv_field " $dev1 " uuid)
2021-08-19 00:23:48 +03:00
pvcreate --devices " $dev2 " -u " $UUID1 " --norestorefile " $dev2 "
pvcreate --devices " $dev3 " -u " $UUID1 " --norestorefile " $dev3 "
2016-04-21 23:53:15 +03:00
pvscan --cache 2>& 1 | tee out
2015-05-14 11:20:24 +03:00
pvs -o+uuid 2>& 1 | tee out
2014-05-27 18:51:57 +04:00
2016-04-21 23:53:15 +03:00
grep WARNING out > warn || true
grep -v WARNING out > main || true
2017-07-02 22:56:10 +03:00
test " $( grep -c $UUID1 main) " -eq 1
2016-04-21 23:53:15 +03:00
2018-05-21 22:20:19 +03:00
COUNT = $( grep --count "Not using device" warn)
2016-04-21 23:53:15 +03:00
[ " $COUNT " -eq 2 ]
2021-08-19 00:23:48 +03:00
pvs -o+uuid --devices $dev2 2>& 1 | tee out
2016-04-21 23:53:15 +03:00
rm warn main || true
grep WARNING out > warn || true
grep -v WARNING out > main || true
not grep " $dev1 " main
grep " $dev2 " main
not grep " $dev3 " main
2018-05-21 22:20:19 +03:00
not grep "Not using device" warn
2014-05-27 18:51:57 +04:00