Modifying the unittest output. XML files are no longer written outside of the build...
[debian/gnuradio] / gnuradio-core / src / lib / runtime / gr_unittests.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2010 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with GNU Radio; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <sys/types.h>
31 #include <sys/stat.h>
32 #include <unistd.h>
33
34
35 #ifdef MKDIR_TAKES_ONE_ARG
36 #define gr_mkdir(pathname, mode) mkdir(pathname)
37 #else
38 #define gr_mkdir(pathname, mode) mkdir((pathname), (mode))
39 #endif
40
41 /*
42  * Mostly taken from gr_preferences.cc/h
43  * The simplest thing that could possibly work:
44  *  the key is the filename; the value is the file contents.
45  */
46
47 static void
48 ensure_unittest_path (const char *path)
49 {
50   struct stat statbuf;
51   if (stat (path, &statbuf) == 0 && S_ISDIR (statbuf.st_mode))
52     return;
53
54   // blindly try to make it     // FIXME make this robust. C++ SUCKS!
55   gr_mkdir (path, 0750);
56 }
57
58 static void
59 get_unittest_path (const char *filename, char *fullpath, size_t pathsize)
60 {
61   char path[200];
62   snprintf (path, sizeof(path), "./.unittests");
63   snprintf (fullpath, pathsize, "%s/%s", path, filename);
64
65   ensure_unittest_path(path);
66 }
67