Line data Source code
1 : /*
2 : * Copyright (c) 2006-2019 Made to Order Software Corp. All Rights Reserved
3 : *
4 : * https://snapwebsites.org/project/snaplogger
5 : * contact@m2osw.com
6 : *
7 : * This program 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 2 of the License, or
10 : * (at your option) any later version.
11 : *
12 : * This program 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 along
18 : * with this program; if not, write to the Free Software Foundation, Inc.,
19 : * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 : */
21 :
22 : // Tell catch we want it to add the runner code in this file.
23 : #define CATCH_CONFIG_RUNNER
24 :
25 : // self
26 : //
27 : #include "main.h"
28 :
29 :
30 : // snaplogger lib
31 : //
32 : #include <snaplogger/version.h>
33 :
34 :
35 : // libexcept lib
36 : //
37 : #include <libexcept/exception.h>
38 :
39 :
40 : // C++ lib
41 : //
42 : #include <sstream>
43 :
44 :
45 :
46 :
47 :
48 2 : int main(int argc, char * argv[])
49 : {
50 4 : return SNAP_CATCH2_NAMESPACE::snap_catch2_main(
51 : "snaplogger"
52 : , SNAPLOGGER_VERSION_STRING
53 : , argc
54 : , argv
55 6 : , []() { libexcept::set_collect_stack(false); }
56 2 : );
57 6 : }
58 :
59 :
60 : // vim: ts=4 sw=4 et
|