Initialize Tizen 2.3
[framework/multimedia/gstreamer0.10.git] / wearable / libs / gst / check / libcheck / check_error.c
1 /*
2  * Check: a unit test framework for C
3  * Copyright (C) 2001, 2002 Arien Malec
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #include "config.h"
22
23 #include <stdarg.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <stdio.h>
27 #include <errno.h>
28
29 #include "check_error.h"
30
31
32 /* FIXME: including a colon at the end is a bad way to indicate an error */
33 void
34 eprintf (const char *fmt, const char *file, int line, ...)
35 {
36   va_list args;
37   fflush (stderr);
38
39   fprintf (stderr, "%s:%d: ", file, line);
40   va_start (args, line);
41   vfprintf (stderr, fmt, args);
42   va_end (args);
43
44   /*include system error information if format ends in colon */
45   if (fmt[0] != '\0' && fmt[strlen (fmt) - 1] == ':')
46     fprintf (stderr, " %s", strerror (errno));
47   fprintf (stderr, "\n");
48
49   exit (2);
50 }
51
52 void *
53 emalloc (size_t n)
54 {
55   void *p;
56   p = malloc (n);
57   if (p == NULL)
58     eprintf ("malloc of %u bytes failed:", __FILE__, __LINE__ - 2, n);
59   return p;
60 }
61
62 void *
63 erealloc (void *ptr, size_t n)
64 {
65   void *p;
66   p = realloc (ptr, n);
67   if (p == NULL)
68     eprintf ("realloc of %u bytes failed:", __FILE__, __LINE__ - 2, n);
69   return p;
70 }