1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 /***********************************************************************
10 ** Description: Test Program to verify the PR_Open finding an existing file.
12 ** Modification History:
13 ** 03-June-97 AGarcia- Initial version
14 ***********************************************************************/
16 /***********************************************************************
18 ***********************************************************************/
19 /* Used to get the command line option */
26 static PRFileDesc
*t1
;
28 int main(int argc
, char **argv
)
32 t1
= PR_Open(argv
[0], PR_RDONLY
, 0666);
35 printf ("error code is %d \n", PR_GetError());
36 printf ("File %s should be found\n", argv
[0]);
39 if (PR_Close(t1
) == PR_SUCCESS
) {
40 printf ("Test passed \n");
43 printf ("cannot close file\n");
44 printf ("error code is %d\n", PR_GetError());