~ubuntu-branches/ubuntu/gutsy/virtualbox-ose/gutsy

« back to all changes in this revision

Viewing changes to src/libs/xpcom18a4/nsprpub/pr/tests/rmdir.c

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2007-09-08 16:44:58 UTC
  • Revision ID: james.westby@ubuntu.com-20070908164458-wao29470vqtr8ksy
Tags: upstream-1.5.0-dfsg2
ImportĀ upstreamĀ versionĀ 1.5.0-dfsg2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 
2
/* ***** BEGIN LICENSE BLOCK *****
 
3
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
4
 *
 
5
 * The contents of this file are subject to the Mozilla Public License Version
 
6
 * 1.1 (the "License"); you may not use this file except in compliance with
 
7
 * the License. You may obtain a copy of the License at
 
8
 * http://www.mozilla.org/MPL/
 
9
 *
 
10
 * Software distributed under the License is distributed on an "AS IS" basis,
 
11
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
12
 * for the specific language governing rights and limitations under the
 
13
 * License.
 
14
 *
 
15
 * The Original Code is the Netscape Portable Runtime (NSPR).
 
16
 *
 
17
 * The Initial Developer of the Original Code is
 
18
 * Netscape Communications Corporation.
 
19
 * Portions created by the Initial Developer are Copyright (C) 1998-2000
 
20
 * the Initial Developer. All Rights Reserved.
 
21
 *
 
22
 * Contributor(s):
 
23
 *
 
24
 * Alternatively, the contents of this file may be used under the terms of
 
25
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 
26
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
27
 * in which case the provisions of the GPL or the LGPL are applicable instead
 
28
 * of those above. If you wish to allow use of your version of this file only
 
29
 * under the terms of either the GPL or the LGPL, and not to allow others to
 
30
 * use your version of this file under the terms of the MPL, indicate your
 
31
 * decision by deleting the provisions above and replace them with the notice
 
32
 * and other provisions required by the GPL or the LGPL. If you do not delete
 
33
 * the provisions above, a recipient may use your version of this file under
 
34
 * the terms of any one of the MPL, the GPL or the LGPL.
 
35
 *
 
36
 * ***** END LICENSE BLOCK ***** */
 
37
 
 
38
/*
 
39
** File:        rmdir.c
 
40
** Description: Demonstrate bugzilla 80884. 
 
41
**
 
42
** after fix to unix_errors.c, message should report correct 
 
43
** failure of PR_Rmdir().
 
44
**
 
45
**
 
46
**
 
47
*/
 
48
 
 
49
#include <prio.h>
 
50
#include <stdio.h>
 
51
#include <prerror.h>
 
52
#include <prlog.h>
 
53
#include "plgetopt.h"
 
54
 
 
55
#define DIRNAME "xxxBug80884/"
 
56
#define FILENAME "file80883"
 
57
 
 
58
PRBool  failed_already = PR_FALSE;
 
59
PRBool  debug_mode = PR_FALSE;
 
60
 
 
61
PRLogModuleInfo     *lm;
 
62
 
 
63
/*
 
64
** Help() -- print Usage information
 
65
*/
 
66
static void Help( void )  {
 
67
    fprintf(stderr, "template usage:\n"
 
68
                    "\t-d     debug mode\n"
 
69
                    );
 
70
} /* --- end Help() */
 
71
 
 
72
PRIntn main(PRIntn argc, char *argv[])
 
73
{
 
74
    PLOptStatus os;
 
75
    PLOptState *opt = PL_CreateOptState(argc, argv, "dh");
 
76
    PRFileDesc* fd;
 
77
    PRErrorCode err;
 
78
 
 
79
    /* parse command line options */
 
80
    while (PL_OPT_EOL != (os = PL_GetNextOpt(opt))) {
 
81
        if (PL_OPT_BAD == os) continue;
 
82
        switch (opt->option) {
 
83
            case 'd':  /* debug mode */
 
84
                debug_mode = PR_TRUE;
 
85
                break;
 
86
            case 'h':
 
87
            default:
 
88
                Help();
 
89
                return 2;
 
90
        }
 
91
    }
 
92
    PL_DestroyOptState(opt);
 
93
 
 
94
    lm = PR_NewLogModule( "testcase" );
 
95
 
 
96
    (void) PR_MkDir( DIRNAME, 0777);
 
97
    fd = PR_Open( DIRNAME FILENAME, PR_CREATE_FILE|PR_RDWR, 0666);
 
98
    if (fd == 0) {
 
99
        PRErrorCode err = PR_GetError();
 
100
        fprintf(stderr, "create file fails: %d: %s\n", err,
 
101
            PR_ErrorToString(err, PR_LANGUAGE_I_DEFAULT));
 
102
        failed_already = PR_TRUE;
 
103
        goto Finished;
 
104
    }
 
105
 
 
106
    PR_Close(fd);
 
107
 
 
108
    if (PR_RmDir( DIRNAME ) == PR_SUCCESS) {
 
109
        fprintf(stderr, "remove directory succeeds\n");
 
110
        failed_already = PR_TRUE;
 
111
        goto Finished;
 
112
    }
 
113
 
 
114
    err = PR_GetError();
 
115
    fprintf(stderr, "remove directory fails with: %d: %s\n", err,
 
116
        PR_ErrorToString(err, PR_LANGUAGE_I_DEFAULT));
 
117
 
 
118
    (void) PR_Delete( DIRNAME FILENAME);
 
119
    (void) PR_RmDir( DIRNAME );
 
120
 
 
121
    return 0;
 
122
 
 
123
Finished:
 
124
    if ( debug_mode ) printf("%s\n", ( failed_already ) ? "FAILED" : "PASS" );
 
125
    return( (failed_already)? 1 : 0 );
 
126
}  /* --- end main() */
 
127
/* --- end template.c */