blob: b01dd3f4b5e085a300fe3ac5d0a4a345339d962c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# $NetBSD: Makefile,v 1.15 2021/02/16 09:46:24 kre Exp $
#
.include <bsd.own.mk>
TESTSDIR = ${TESTSBASE}/bin/sh
TESTS_SUBDIRS += dotcmd
TESTS_SH+= t_arith
TESTS_SH+= t_builtins
TESTS_SH+= t_cmdsub
TESTS_SH+= t_evaltested
TESTS_SH+= t_exit
TESTS_SH+= t_expand
TESTS_SH+= t_fsplit
TESTS_SH+= t_here
TESTS_SH+= t_input
TESTS_SH+= t_option
TESTS_SH+= t_patterns
TESTS_SH+= t_redir
TESTS_SH+= t_redircloexec
TESTS_SH+= t_set_e
TESTS_SH+= t_shift
TESTS_SH+= t_syntax
TESTS_SH+= t_ulimit
TESTS_SH+= t_varquote
TESTS_SH+= t_varval
TESTS_SH+= t_wait
.include <bsd.test.mk>
|