Compare commits
2 Commits
14262a816e
...
1e5423b564
Author | SHA1 | Date | |
---|---|---|---|
1e5423b564 | |||
ede11a1727 |
|
@ -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);
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
|
@ -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 "../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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user