X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/05b75f8d50b83e943af3be4071449304d82dbdcd..59cf25c47fbda22f3f4e14399f0436cc6ed2c56f:/libtests/test.h diff --git a/libtests/test.h b/libtests/test.h index cb26b62..b940413 100644 --- a/libtests/test.h +++ b/libtests/test.h @@ -2,22 +2,20 @@ * This file is part of DisOrder. * Copyright (C) 2005, 2007, 2008 Richard Kettlewell * - * This program is free software; you can redistribute it and/or modify + * 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 + * the Free Software Foundation, either version 3 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. - * + * + * 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 + * along with this program. If not, see . */ -/** @file lib/test.h @brief Library tests */ +/** @file libtests/test.h @brief Library tests */ #ifndef TEST_H #define TEST_H @@ -30,13 +28,13 @@ #include #include #include -#include #include #include #include #include #include #include +#include #include "mem.h" #include "log.h" @@ -68,6 +66,7 @@ extern long long tests, errors; extern int fail_first; extern int verbose; +extern int skipped; /** @brief Checks that @p expr is nonzero */ #define insist(expr) do { \ @@ -121,6 +120,21 @@ extern int verbose; ++tests; \ } while(0) +#define check_fatal(WHAT) do { \ + void (*const save_exitfn)(int) attribute((noreturn)) = exitfn; \ + \ + exitfn = test_exitfn; \ + if(setjmp(fatal_env) == 0) { \ + fprintf(stderr, "Expect an error:\n "); \ + (void)(WHAT); \ + fprintf(stderr, "\n%s:%d: %s unexpectedly returned\n", \ + __FILE__, __LINE__, #WHAT); \ + count_error(); \ + } \ + ++tests; \ + exitfn = save_exitfn; \ +} while(0) + void count_error(void); const char *format(const char *s); const char *format_utf32(const uint32_t *s); @@ -128,6 +142,9 @@ uint32_t *ucs4parse(const char *s); const char *do_printf(const char *fmt, ...); void test_init(int argc, char **argv); +extern jmp_buf fatal_env; +void test_exitfn(int) attribute((noreturn)); + #define TEST(name) \ int main(int argc, char **argv) { \ test_init(argc, argv); \ @@ -135,7 +152,11 @@ void test_init(int argc, char **argv); if(errors || verbose) \ fprintf(stderr, "test_"#name": %lld errors out of %lld tests\n", \ errors, tests); \ - return !!errors; \ + if(errors) \ + return 1; \ + if(skipped) \ + return 77; \ + return 0; \ } \ \ struct swallow_semicolon