File: testmemleak.c

package info (click to toggle)
dancer-xml 0.8.2.1-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, jessie, jessie-kfreebsd, lenny, squeeze, wheezy
  • size: 1,644 kB
  • ctags: 109
  • sloc: sh: 8,889; ansic: 1,551; xml: 868; makefile: 115
file content (50 lines) | stat: -rw-r--r-- 1,373 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
 *  dancer-XML parser
 *  Copyright (C) 2000,2002 Junichi Uekawa
 *
 *  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; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will 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 to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * memory leak testing module
 * tests leakage of memory through trying to read a file for an infinite
 * amount of time, trying to unload it every time as well.
 */

#include <stdio.h>
#include "dancer-xml.h"
static dxml_element * 
read_open (const char * filename)
{
  FILE * f = fopen (filename, "r");
  dxml_element * e;
  
  if (f)
    {
      e = dxml_read_xml(f);
      fclose(f);
      return e;
    }
  else
    return NULL;
}


int main(int ac, char ** av)
{
  while (1)
    {
      dxml_free_xml(read_open(av[1]));
      printf ("Iteration finished\n");
    }  
}