summaryrefslogtreecommitdiffstats
path: root/tests/ts/fdisk
diff options
context:
space:
mode:
authorHelge Deller2016-08-15 22:26:30 +0200
committerKarel Zak2016-08-16 13:36:12 +0200
commit569ad28288f64df2161e545780c8afad6287316f (patch)
treedcdf4e98da5e02ff1cdcd811408d5f450dd9040f /tests/ts/fdisk
parentlsns: support cgroup namespaces (diff)
downloadkernel-qcow2-util-linux-569ad28288f64df2161e545780c8afad6287316f.tar.gz
kernel-qcow2-util-linux-569ad28288f64df2161e545780c8afad6287316f.tar.xz
kernel-qcow2-util-linux-569ad28288f64df2161e545780c8afad6287316f.zip
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 <deller@gmx.de> Cc: 827225@bugs.debian.org
Diffstat (limited to 'tests/ts/fdisk')
-rwxr-xr-xtests/ts/fdisk/bsd2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ts/fdisk/bsd b/tests/ts/fdisk/bsd
index fa64e1aff..2d33dd494 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
;;