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:
Niv Sardi
2008-06-04 04:25:32 +00:00
parent cf09031550
commit d36fc6847d
+11 -4
View File
@@ -120,10 +120,17 @@ if [ $HOSTOS == "IRIX" ]; then
param_type="IRIX nondebug"
fi
elif [ $HOSTOS == "Linux" ]; then
numloops=10
numfiles=5
numchildren=3
param_type="Linux"
if uname -a | grep -q SMP; then
numloops=10
numfiles=5
numchildren=3
param_type="Linux SMP"
else
numloops=2
numfiles=3
numchildren=3
param_type="Linux UP"
fi
else
numloops=1
numfiles=1