moved tests into main directory

This commit is contained in:
jlamothe 2023-11-03 23:24:10 +00:00
parent 9282ff7194
commit 092ea2b3a3
3 changed files with 4 additions and 13 deletions

5
mkfile
View File

@ -3,9 +3,10 @@
qfmt: main.$O lib.$O qfmt: main.$O lib.$O
$LD $LDFLAGS -o qfmt main.$O lib.$O $LD $LDFLAGS -o qfmt main.$O lib.$O
test: qfmt $O.qfmt: test.$O lib.$O
$LD $LDFLAGS -o $O.qfmt test.$O lib.$O
TEST=test TEST=qfmt
</sys/src/cmd/mktest </sys/src/cmd/mktest

View File

@ -4,6 +4,7 @@
void void
main() main()
{ {
print("Tests not implemented yet.\n");
exits(0); exits(0);
} }

View File

@ -1,11 +0,0 @@
</$objtype/mkfile
$O.%: ../%.$O
%.$O: ../%.h
TEST=lib
</sys/src/cmd/mktest
#jl