186d7f5d3SJohn Marino#!/bin/sh 286d7f5d3SJohn Marino# Copyright (C) 2008 Red Hat, Inc. All rights reserved. 386d7f5d3SJohn Marino# 486d7f5d3SJohn Marino# This copyrighted material is made available to anyone wishing to use, 586d7f5d3SJohn Marino# modify, copy, or redistribute it subject to the terms and conditions 686d7f5d3SJohn Marino# of the GNU General Public License v.2. 786d7f5d3SJohn Marino# 886d7f5d3SJohn Marino# You should have received a copy of the GNU General Public License 986d7f5d3SJohn Marino# along with this program; if not, write to the Free Software Foundation, 1086d7f5d3SJohn Marino# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 1186d7f5d3SJohn Marino 1286d7f5d3SJohn Marino# 'Ensure that pvmove diagnoses PE-range values 2^32 and larger.' 1386d7f5d3SJohn Marino 1486d7f5d3SJohn Marino. ./test-utils.sh 1586d7f5d3SJohn Marino 1686d7f5d3SJohn Marinoaux prepare_vg 2 1786d7f5d3SJohn Marino 1886d7f5d3SJohn Marinolvcreate -L4 -n"$lv" $vg 1986d7f5d3SJohn Marino 2086d7f5d3SJohn Marino# Test for the bogus diagnostic reported in BZ 284771 2186d7f5d3SJohn Marino# http://bugzilla.redhat.com/284771. 2286d7f5d3SJohn Marino# 'run pvmove with an unrecognized LV name to show bad diagnostic' 2386d7f5d3SJohn Marinonot pvmove -v -nbogus $dev1 $dev2 2> err 2486d7f5d3SJohn Marinogrep " Logical volume bogus not found." err 2586d7f5d3SJohn Marino 2686d7f5d3SJohn Marino# With lvm-2.02.28 and earlier, on a system with 64-bit "long int", 2786d7f5d3SJohn Marino# the PE range parsing code would accept values up to 2^64-1, but would 2886d7f5d3SJohn Marino# silently truncate them to int32_t. I.e., $dev1:$(echo 2^32|bc) would be 2986d7f5d3SJohn Marino# treated just like $dev1:0. 3086d7f5d3SJohn Marino# 'run the offending pvmove command' 3186d7f5d3SJohn Marinonot pvmove -v -n$lv $dev1:4294967296 $dev2 3286d7f5d3SJohn Marino 33