minix/external/bsd/libc++/dist/libcxxrt/test/test.cc
Lionel Sambuc 4684ddb6aa LLVM Minix changes
- import libcxx
 - reduce targets to the one when compiled as a tools

Change-Id: Iabb8427f80ff8e89463559a28bcb8b4f2bdbc496
2014-07-28 17:05:59 +02:00

57 lines
917 B
C++

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
static int succeeded;
static int failed;
static bool verbose;
void log_test(bool predicate, const char *file, int line, const char *message)
{
if (predicate)
{
if (verbose)
{
printf("Test passed: %s:%d: %s\n", file, line, message);
}
succeeded++;
return;
}
failed++;
printf("Test failed: %s:%d: %s\n", file, line, message);
}
static void log_totals(void)
{
printf("\n%d tests, %d passed, %d failed\n", succeeded+failed, succeeded, failed);
}
static void __attribute__((constructor)) init(void)
{
atexit(log_totals);
}
void test_type_info(void);
void test_exceptions();
void test_guards(void);
int main(int argc, char **argv)
{
int ch;
while ((ch = getopt(argc, argv, "v")) != -1)
{
switch (ch)
{
case 'v':
verbose = true;
default: break;
}
}
test_type_info();
test_guards();
test_exceptions();
return 0;
}