[BACK]Return to ftrunc.c CVS log [TXT][DIR] Up to [Development] / xfs-cmds / xfstests / src

File: [Development] / xfs-cmds / xfstests / src / ftrunc.c (download)

Revision 1.1, Fri Aug 4 13:44:58 2006 UTC (11 years, 2 months ago) by allanr.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD

Merge relevant CXFSQA tests into XFSQA
Merge of master-melb:xfs-cmds:26631a by kenmcd.

/*
 * Copyright (c) 2000-2003 Silicon Graphics, Inc.
 * All Rights Reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it would be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write the Free Software Foundation,
 * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>

int
main(argc, argv)
int     argc;
char    **argv;

{
char    ch, *filename="testfile";
int c;
int fd, err;

if(argc != 3)
        {        printf("Usage: cxfs_ftrunc -f filename\n");
                exit(1);
        }

while((c=getopt(argc,argv,"f:"))!=EOF) {
                ch = (char)c;
                switch (c) {
                case 'f':
                        filename = optarg;
                        break;
                default:
                        fprintf(stderr,"Usage: ftrunc -f filename\n");
                        exit(1);
                }
        }




          /* open RDWR but with read-only perms */
          fd = open(filename, O_CREAT|O_RDWR, 0400);
          if (fd < 0) {
                perror("open failed");
                return 1;
                }

          err = ftruncate(fd, 1000);
          if (err < 0) {
              perror("ftruncate failed");
              return 1;
           }

          err = unlink(filename);
          if (err < 0) {
                perror("unlink failed");
                return 1;
          }     

          return 0;

}