blob: 84723d2d211f5b8c8122998deee98aeab2fd8822 (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
# $FreeBSD: src/tools/regression/fstest/tests/truncate/14.t,v 1.1 2007/01/17 01:42:12 pjd Exp $
desc="truncate returns EFAULT if the path argument points outside the process's allocated address space"
expect EFAULT truncate NULL 123
expect EFAULT truncate DEADCODE 123
|