Compare commits

...

2 Commits

Author SHA1 Message Date
jlamothe 1e5423b564 defined test_passing 2023-11-09 00:06:18 +00:00
jlamothe ede11a1727 added test module for run_test() 2023-11-08 23:38:42 +00:00
5 changed files with 78 additions and 3 deletions

View File

@ -41,7 +41,7 @@ decl_test(initial_ptr);
void void
test_initial_state(TestState *s) test_initial_state(TestState *s)
{ {
print("Testing initial state\n"); print("initial state\n");
run_test(s, initial_test_count); run_test(s, initial_test_count);
run_test(s, initial_pass_count); run_test(s, initial_pass_count);
run_test(s, initial_fail_count); run_test(s, initial_fail_count);

View File

@ -16,8 +16,8 @@
</$objtype/mkfile </$objtype/mkfile
HFILES=../9unit.h macros.h initial-state.h HFILES=../9unit.h macros.h initial-state.h run-test.h
OFILES=initial-state.$O OFILES=initial-state.$O run-test.$O
LIB=../9unit.a LIB=../9unit.a
TEST=tests TEST=tests

50
test/run-test.c Normal file
View File

@ -0,0 +1,50 @@
/*
9unit
Copyright (C) Jonathan Lamothe <jonathan@jlamothe.net>
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 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.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <u.h>
#include <libc.h>
#include "../9unit.h"
#include "run-test.h"
// Internal Prototypes
static void test_passing(TestState *);
// Public Functions
void
test_run_test(TestState *s)
{
print("run_test()\n");
test_passing(s);
}
// Internal Functions
static
void test_passing(TestState *s)
{
void *oldptr = s->ptr;
print("\tpassing\n");
s->ptr = oldptr;
}
//jl

23
test/run-test.h Normal file
View File

@ -0,0 +1,23 @@
/*
9unit
Copyright (C) Jonathan Lamothe <jonathan@jlamothe.net>
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 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.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
extern void test_run_test(TestState *s);
//jl

View File

@ -23,6 +23,7 @@
#include "../9unit.h" #include "../9unit.h"
#include "initial-state.h" #include "initial-state.h"
#include "run-test.h"
// Internal Prototypes // Internal Prototypes
@ -50,6 +51,7 @@ tests(TestState *s)
s->ptr = &scpy; s->ptr = &scpy;
test_initial_state(s); test_initial_state(s);
test_run_test(s);
} }
//jl //jl