Compare commits
4 Commits
092ea2b3a3
...
82e63531e6
Author | SHA1 | Date | |
---|---|---|---|
82e63531e6 | |||
8275f71479 | |||
2a24b1586f | |||
3c0ab0ecd7 |
8
mkfile
8
mkfile
|
@ -1,12 +1,14 @@
|
|||
</$objtype/mkfile
|
||||
|
||||
HEADERS=lib.h
|
||||
CLEANFILES=qfmt
|
||||
|
||||
qfmt: main.$O lib.$O
|
||||
$LD $LDFLAGS -o qfmt main.$O lib.$O
|
||||
|
||||
$O.qfmt: test.$O lib.$O
|
||||
$LD $LDFLAGS -o $O.qfmt test.$O lib.$O
|
||||
test: qfmt
|
||||
|
||||
TEST=qfmt
|
||||
TEST=test
|
||||
|
||||
</sys/src/cmd/mktest
|
||||
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
#include <u.h>
|
||||
#include <libc.h>
|
||||
|
||||
void
|
||||
test_init(void)
|
||||
{
|
||||
print("testing: init()\n");
|
||||
print("tests not yet defined\n");
|
||||
}
|
||||
|
||||
//jl
|
|
@ -0,0 +1,3 @@
|
|||
extern void test_init(void);
|
||||
|
||||
//jl
|
|
@ -0,0 +1,11 @@
|
|||
</$objtype/mkfile
|
||||
|
||||
HEADERS=init.h ../init.h
|
||||
|
||||
$O.test: test.$O init.$O ../lib.$O
|
||||
|
||||
TEST=test
|
||||
|
||||
</sys/src/cmd/mktest
|
||||
|
||||
#jl
|
|
@ -1,10 +1,12 @@
|
|||
#include <u.h>
|
||||
#include <libc.h>
|
||||
|
||||
#include "init.h"
|
||||
|
||||
void
|
||||
main()
|
||||
{
|
||||
print("Tests not implemented yet.\n");
|
||||
test_init();
|
||||
exits(0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user