mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
074 takes ages to complete on my kvm test VM, but scaling it back to the
level used on IRIX makes it complete in slightly under 10 minutes. I'm not sure if checking for UP vs SMP is the right way to go into slow mode, but I couldn't think of anything better. Signed-off-by: Christoph Hellwig <hch@lst.de> Merge of master-melb:xfs-cmds:31272a by kenmcd.
This commit is contained in:
@@ -120,10 +120,17 @@ if [ $HOSTOS == "IRIX" ]; then
|
|||||||
param_type="IRIX nondebug"
|
param_type="IRIX nondebug"
|
||||||
fi
|
fi
|
||||||
elif [ $HOSTOS == "Linux" ]; then
|
elif [ $HOSTOS == "Linux" ]; then
|
||||||
numloops=10
|
if uname -a | grep -q SMP; then
|
||||||
numfiles=5
|
numloops=10
|
||||||
numchildren=3
|
numfiles=5
|
||||||
param_type="Linux"
|
numchildren=3
|
||||||
|
param_type="Linux SMP"
|
||||||
|
else
|
||||||
|
numloops=2
|
||||||
|
numfiles=3
|
||||||
|
numchildren=3
|
||||||
|
param_type="Linux UP"
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
numloops=1
|
numloops=1
|
||||||
numfiles=1
|
numfiles=1
|
||||||
|
|||||||
Reference in New Issue
Block a user