~ubuntu-branches/ubuntu/saucy/nspr/saucy-updates

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/pr/tests/logfile.c

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2009-08-10 11:34:26 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090810113426-3uv4diflrkcbdimm
Tags: 4.8-0ubuntu1
* New upstream release: 4.8 (LP: #387812)
* adjust patches to changed upstreanm codebase
  - update debian/patches/99_configure.patch
* update shlibs symbols to include new API elements
  - update debian/libnspr4-0d.symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
 
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
 * Google Inc.
 
19
 * Portions created by the Initial Developer are Copyright (C) 2009
 
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
 * A regression test for bug 491441.  NSPR should not crash on startup in
 
40
 * PR_SetLogFile when the NSPR_LOG_MODULES and NSPR_LOG_FILE environment
 
41
 * variables are set.
 
42
 *
 
43
 * This test could be extended to be a full-blown test for NSPR_LOG_FILE.
 
44
 */
 
45
 
 
46
#include "prinit.h"
 
47
#include "prlog.h"
 
48
 
 
49
#include <stdio.h>
 
50
#include <stdlib.h>
 
51
 
 
52
int main()
 
53
{
 
54
    PRLogModuleInfo *test_lm;
 
55
 
 
56
    if (putenv("NSPR_LOG_MODULES=all:5") != 0) {
 
57
        fprintf(stderr, "putenv failed\n");
 
58
        exit(1);
 
59
    }
 
60
    if (putenv("NSPR_LOG_FILE=logfile.log") != 0) {
 
61
        fprintf(stderr, "putenv failed\n");
 
62
        exit(1);
 
63
    }
 
64
 
 
65
    PR_Init(PR_USER_THREAD, PR_PRIORITY_NORMAL, 0);
 
66
    test_lm = PR_NewLogModule("test");
 
67
    PR_LOG(test_lm, PR_LOG_MIN, ("logfile: test log message"));
 
68
    PR_Cleanup();
 
69
    return 0;
 
70
}