From: Helge Deller Date: Mon, 15 Aug 2016 20:26:30 +0000 (+0200) Subject: tests: really fix fdisk/bsd for hppa X-Git-Tag: v2.29-rc1~112 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=569ad28288f64df2161e545780c8afad6287316f;p=thirdparty%2Futil-linux.git tests: really fix fdisk/bsd for hppa Finally fix the bsd testcase on the hppa architecture. Commit 1b7be556e553cdcef6213ead6340832c306011ed tried to fix it, but missed the fact that "uname -m" returns "parisc" or "parisc64" instead of "hppa*". Signed-off-by: Helge Deller Cc: 827225@bugs.debian.org --- diff --git a/tests/ts/fdisk/bsd b/tests/ts/fdisk/bsd index fa64e1affd..2d33dd4946 100755 --- a/tests/ts/fdisk/bsd +++ b/tests/ts/fdisk/bsd @@ -48,7 +48,7 @@ BYTE_ORDER=$($TS_HELPER_SYSINFO byte-order) ARCH=$(uname -m) case $ARCH in # see include/pt-bsd.h - *alpha* | *ppc* | *ia64* | *hppa* ) + *alpha* | *ppc* | *ia64* | *parisc* ) BSD_LABELSECTOR=0 BSD_LABELOFFSET=64 ;;