added test module for run_test()
This commit is contained in:
parent
14262a816e
commit
ede11a1727
|
@ -41,7 +41,7 @@ decl_test(initial_ptr);
|
|||
void
|
||||
test_initial_state(TestState *s)
|
||||
{
|
||||
print("Testing initial state\n");
|
||||
print("initial state\n");
|
||||
run_test(s, initial_test_count);
|
||||
run_test(s, initial_pass_count);
|
||||
run_test(s, initial_fail_count);
|
||||
|
|
|
@ -16,8 +16,8 @@
|
|||
|
||||
</$objtype/mkfile
|
||||
|
||||
HFILES=../9unit.h macros.h initial-state.h
|
||||
OFILES=initial-state.$O
|
||||
HFILES=../9unit.h macros.h initial-state.h run-test.h
|
||||
OFILES=initial-state.$O run-test.$O
|
||||
LIB=../9unit.a
|
||||
TEST=tests
|
||||
|
||||
|
|
|
@ -0,0 +1,35 @@
|
|||
/*
|
||||
|
||||
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"
|
||||
|
||||
// Public Functions
|
||||
|
||||
void
|
||||
test_run_test(TestState *)
|
||||
{
|
||||
print("run_test()\n");
|
||||
}
|
||||
|
||||
//jl
|
|
@ -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
|
|
@ -23,6 +23,7 @@
|
|||
|
||||
#include "../9unit.h"
|
||||
#include "initial-state.h"
|
||||
#include "run-test.h"
|
||||
|
||||
// Internal Prototypes
|
||||
|
||||
|
@ -50,6 +51,7 @@ tests(TestState *s)
|
|||
s->ptr = &scpy;
|
||||
|
||||
test_initial_state(s);
|
||||
test_run_test(s);
|
||||
}
|
||||
|
||||
//jl
|
||||
|
|
Loading…
Reference in New Issue
Block a user