Lines Matching full:truncate
24 * Verify that, truncate(2) succeeds to truncate a file to a certain length,
28 * truncate(2) should return a value 0 and the attempt to read past the
115 * Call truncate(2) to truncate a test file to a
118 TEST(truncate(TESTFILE, TRUNC_LEN1));
122 "truncate(%s, %d) Failed, errno=%d : %s",
132 "%s failed after 1st truncate, "
143 "%s failed after 1st truncate, "
154 * Execute truncate(2) again to truncate
157 TEST(truncate(TESTFILE, TRUNC_LEN2));
160 tst_resm(TFAIL, "truncate of %s to "
173 "%s failed after 2nd truncate, "
184 "%s failed after 2nd truncate, "
200 * issuing truncate(2) on it.
207 "truncate(2) on %s Failed",
211 "Functionality of truncate(2) "