test.h introduces a PLANNED_TEST() macro for C code, shows what tests are provided and so on (the nobug version did that since some time). test names are now passed as identifers and translated to strings by the macros. A lot fixes for existing tests, replace some printfs with ECHO, cosmetics. one threadpool (sync_many) test is broken and set to PLANNED, this needs further testsuite support for dispatching output. add a TEST nobug flag to test.h
100 lines
2.1 KiB
C
100 lines
2.1 KiB
C
/*
|
|
Copyright (C) Lumiera.org
|
|
2008, Christian Thaeter <ct@pipapo.org>
|
|
|
|
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 (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.
|
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
#include "lib/safeclib.h"
|
|
#include "tests/test.h"
|
|
|
|
#include <sys/time.h>
|
|
#include <sys/resource.h>
|
|
|
|
TESTS_BEGIN
|
|
|
|
TEST (allocation0)
|
|
{
|
|
lumiera_malloc (0);
|
|
NOTREACHED();
|
|
}
|
|
|
|
TEST (allocation1024)
|
|
{
|
|
void* data[1024];
|
|
for (int i = 0; i < 1024; ++i)
|
|
{
|
|
data[i] = lumiera_malloc (1024);
|
|
ENSURE (data[i]);
|
|
}
|
|
for (int i = 0; i < 1024; ++i)
|
|
{
|
|
free (data[i]);
|
|
}
|
|
}
|
|
|
|
TEST (allocationtoobig)
|
|
{
|
|
struct rlimit rl;
|
|
rl.rlim_cur = 100*1024*1024;
|
|
rl.rlim_max = 100*1024*1024;
|
|
setrlimit (RLIMIT_AS, &rl);
|
|
lumiera_malloc (200*1024*1024);
|
|
NOTREACHED();
|
|
}
|
|
|
|
TEST (streq)
|
|
{
|
|
CHECK (lumiera_streq ("foo", "foo"));
|
|
CHECK (lumiera_streq (NULL, NULL));
|
|
CHECK (!lumiera_streq (NULL, "foo"));
|
|
CHECK (!lumiera_streq ("foo", NULL));
|
|
CHECK (!lumiera_streq ("foo", "bar"));
|
|
}
|
|
|
|
TEST (tmpbuf)
|
|
{
|
|
for (int i = 0; i < 256; ++i)
|
|
{
|
|
char* buf = lumiera_tmpbuf_provide (1024);
|
|
|
|
for (int j = 0; j < 1024; ++j)
|
|
{
|
|
buf[j] = i;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
TEST (tr0)
|
|
{
|
|
char* r = lumiera_tmpbuf_tr (argv[2], "abcdeABCDE0123456789", "ABCDEABCDE0123456789", NULL);
|
|
printf("%s\n", r?r:"failed");
|
|
}
|
|
|
|
|
|
TEST (tr)
|
|
{
|
|
char* r = lumiera_tmpbuf_tr (argv[2], "abcdeABCDE0123456789", "ABCDEABCDE0123456789", "");
|
|
printf("%s\n", r?r:"failed");
|
|
}
|
|
|
|
|
|
TEST (tr_)
|
|
{
|
|
printf("%s\n", lumiera_tmpbuf_tr (argv[2], "abcdeABCDE0123456789", "ABCDEABCDE0123456789", "_"));
|
|
}
|
|
|
|
|
|
TESTS_END
|