1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
5 * Copyright (C) 2012 Data Differential, http://datadifferential.com/
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 3 of the License, or (at your option) any later version.
12 * This library 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 GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include <libtest/common.h>
27 fatal::fatal(const char *file
, int line
, const char *func
, const char *format
, ...) :
28 std::runtime_error(func
)
31 va_start(args
, format
);
32 char last_error
[BUFSIZ
];
33 (void)vsnprintf(last_error
, sizeof(last_error
), format
, args
);
36 snprintf(_error_message
, sizeof(_error_message
), "%s:%d FATAL:%s (%s)", file
, int(line
), last_error
, func
);
39 static bool _disabled
= false;
40 static uint32_t _counter
= 0;
42 bool fatal::is_disabled()
57 uint32_t fatal::disabled_counter()
62 void fatal::increment_disabled_counter()
67 } // namespace libtest