diff options
Diffstat (limited to 'tests/basic/quota-nfs.t')
-rwxr-xr-x | tests/basic/quota-nfs.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/basic/quota-nfs.t b/tests/basic/quota-nfs.t index 501d8ab6381..ea1fce93a3e 100755 --- a/tests/basic/quota-nfs.t +++ b/tests/basic/quota-nfs.t @@ -41,9 +41,9 @@ TEST dd if=/dev/zero of=$N0/$deep/newfile_1 bs=512 count=10240 EXPECT_WITHIN $MARKER_UPDATE_TIMEOUT "15.0MB" usage "/" # compile the test write program and run it -TEST $CC $(dirname $0)/quota-nfs.c -o $(dirname $0)/quota-nfs; +TEST $CC $(dirname $0)/quota.c -o $(dirname $0)/quota; # Try to create a 100Mb file which should fail -TEST ! $(dirname $0)/quota-nfs $N0/$deep/newfile_2 "104857600" +TEST ! $(dirname $0)/quota $N0/$deep/newfile_2 "104857600" TEST rm -f $N0/$deep/newfile_2 ## Before killing daemon to avoid deadlocks |