1 #
2 # This file and its contents are supplied under the terms of the
3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 # You may only use this file in accordance with the terms of version
5 # 1.0 of the CDDL.
6 #
7 # A full copy of the text of the CDDL should have accompanied this
8 # source. A copy of the CDDL is also available via the Internet at
9 # http://www.illumos.org/license/CDDL.
10 #
11
12 #
13 # Copyright (c) 2019, Joyent, Inc.
14 #
15
16 include $(SRC)/Makefile.master
17
18 ROOTOPTPKG = $(ROOT)/opt/util-tests
19 TESTDIR = $(ROOTOPTPKG)/tests/ctf
20
21 SCRIPTS = ctftest.ksh
22
23 TESTS = test-float.c \
24 test-reference.c \
25 test-int.c \
26 test-array.c \
27 test-enum.c \
28 test-forward.c \
29 test-sou.c \
30 test-function.c \
31 test-merge-static/Makefile.ctftest \
32 test-merge-static/test-a.c \
33 test-merge-static/test-b.c \
34 test-merge-static/test-c.c \
35 test-merge-static/test-d.c \
36 test-merge-static/test-main.c \
37 test-merge-forward/Makefile.ctftest \
38 test-merge-forward/test-impl.c \
39 test-merge-forward/test-merge.c \
40 test-merge-dedup/Makefile.ctftest \
41 test-merge-dedup/test-merge-1.c \
|
1 #
2 # This file and its contents are supplied under the terms of the
3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 # You may only use this file in accordance with the terms of version
5 # 1.0 of the CDDL.
6 #
7 # A full copy of the text of the CDDL should have accompanied this
8 # source. A copy of the CDDL is also available via the Internet at
9 # http://www.illumos.org/license/CDDL.
10 #
11
12 #
13 # Copyright (c) 2019, Joyent, Inc.
14 #
15
16 include $(SRC)/Makefile.master
17
18 ROOTOPTPKG = $(ROOT)/opt/util-tests
19 TESTDIR = $(ROOTOPTPKG)/tests/ctf
20
21 SCRIPTS = precheck.ksh \
22 ctftest.ksh \
23 ctftest-convert-non-c.ksh \
24 ctftest-convert-no-dwarf.ksh \
25 ctftest-merge-no-ctf.ksh \
26
27 TESTS = test-float.c \
28 test-reference.c \
29 test-int.c \
30 test-array.c \
31 test-enum.c \
32 test-forward.c \
33 test-sou.c \
34 test-function.c \
35 test-merge-static/Makefile.ctftest \
36 test-merge-static/test-a.c \
37 test-merge-static/test-b.c \
38 test-merge-static/test-c.c \
39 test-merge-static/test-d.c \
40 test-merge-static/test-main.c \
41 test-merge-forward/Makefile.ctftest \
42 test-merge-forward/test-impl.c \
43 test-merge-forward/test-merge.c \
44 test-merge-dedup/Makefile.ctftest \
45 test-merge-dedup/test-merge-1.c \
|