Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / tests / fcachesize-dir
CommitLineData
805e021f
CE
1#!/bin/sh
2# $Id$
3
4FS=${FS:-${objdir}/../appl/fs/fs}
5SIZE1=`$FS getcache -b | awk '{ print $4 ; exit }'`
6mkdir foo
7SIZE2=`$FS getcache -b | awk '{ print $4 ; exit }'`
8test $SIZE2 = `expr $SIZE1 + 2048` || exit 1
9rmdir foo
10#SIZE3=`$FS getcache -b | awk '{ print $4 ; exit }'`
11#test $SIZE3 = $SIZE1 || exit 1
12
13exit 0