first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / core / library / tests_basis / checkup.h
1 #ifndef CHECKUP_GROUP
2 #define CHECKUP_GROUP
3
4 /*
5 *  Name   : checkup
6 *  Author : Chris Koeritz
7 *  Purpose:
8 *    Checks that certain critical properties are upheld by the runtime
9 *  environment.  This could be invoked at the beginning of a main program to
10 *  check these characteristics once before continuing execution.
11 **
12 * Copyright (c) 1990-$now By Author.  This program is free software; you can  *
13 * redistribute it and/or modify it under the terms of the GNU General Public  *
14 * License as published by the Free Software Foundation; either version 2 of   *
15 * the License or (at your option) any later version.  This is online at:      *
16 *     http://www.fsf.org/copyleft/gpl.html                                    *
17 * Please send any updates to: fred@gruntose.com                               *
18 */
19
20 #include <basis/definitions.h>
21 #include <unit_test/unit_base.h>
22
23 namespace system_checkup {
24
25   bool check_system_characteristics(unit_test::unit_base &testing);
26     // used to verify that this compilation system possesses some desired
27     // characteristics.  true is returned if everything checks out, and false
28     // is returned if some assumption proves untrue.
29
30 }
31
32 #endif
33