1#!/bin/sh
2# $FreeBSD: src/tools/regression/fstest/tests/truncate/13.t,v 1.1 2007/01/17 01:42:12 pjd Exp $
3
4desc="truncate returns EINVAL if the length argument was less than 0"
5
6n0=`namegen`
7
8expect 0 create ${n0} 0644
9expect EINVAL truncate ${n0} -1
10expect EINVAL truncate ${n0} -999999
11expect 0 unlink ${n0}
12