~ubuntu-branches/ubuntu/quantal/nspr/quantal-security

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/pr/tests/join.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:
64
64
#include <stdlib.h>
65
65
#include <string.h>
66
66
 
67
 
#ifdef XP_MAC
68
 
#include "prlog.h"
69
 
#define printf PR_LogPrint
70
 
extern void SetupMacPrintfLog(char *logFile);
71
 
#endif
72
67
/***********************************************************************
73
68
** PRIVATE FUNCTION:    Test_Result
74
69
** DESCRIPTION: Used in conjunction with the regress tool, prints out the
227
222
    }
228
223
    PL_DestroyOptState(opt);
229
224
 
230
 
#ifdef XP_MAC
231
 
    SetupMacPrintfLog("join.log");
232
 
    debug_mode = 1;
233
 
#endif
234
 
 
235
 
    
236
 
    
237
225
 /* main test */
238
226
    printf("User-User test\n");
239
227
    runTest(PR_LOCAL_THREAD, PR_LOCAL_THREAD);
254
242
 
255
243
 
256
244
 
257
 
PRIntn main(PRIntn argc, char *argv[])
 
245
int main(int argc, char **argv)
258
246
{
259
247
    PRIntn rv;
260
248