aboutsummaryrefslogtreecommitdiffstats
path: root/roms/edk2/MdeModulePkg/Universal/RegularExpressionDxe/oniguruma/test/Makefile.am
blob: ada0afbcd1a2c1ca5af14b9de6165b5b28d462a3 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
## Makefile.am for Oniguruma
lib_onig = ../src/libonig.la

AM_LDFLAGS  = -L$(prefix)/lib
AM_CFLAGS = -Wall -Wno-invalid-source-encoding
AM_CPPFLAGS = -I$(top_srcdir)/src

if ENABLE_POSIX_API
TESTS = test_utf8 test_syntax testc testp testcu test_regset
else
TESTS = test_utf8 test_syntax testc testcu test_regset
endif

check_PROGRAMS = $(TESTS)

test: test_uchar $(TESTS)
	@echo "[Oniguruma API, UTF-8 check]"
	@./test_utf8  | grep RESULT
	@echo "[Oniguruma API, SYNTAX check]"
	@./test_syntax  | grep RESULT
	@echo "[Oniguruma API, ASCII/EUC-JP check]"
	@./testc  | grep RESULT
if ENABLE_POSIX_API
	@echo "[POSIX API, ASCII/EUC-JP check]"
	@./testp  | grep RESULT
endif
	@echo "[Oniguruma API, UTF-16 check]"
	@./testcu | grep RESULT
	@echo ""
	@echo "[Oniguruma API, regset check]"
	@./test_regset

test_uchar:
	@echo "[UChar in oniguruma.h check]"
	@grep "\(^\|[^g]\)UChar" $(top_srcdir)/src/oniguruma.h
	@echo ""

test_utf8_SOURCES = test_utf8.c
test_utf8_LDADD = $(lib_onig)

test_syntax_SOURCES = test_syntax.c
test_syntax_LDADD = $(lib_onig)

testc_SOURCES = testc.c
testc_LDADD = $(lib_onig)

testp_SOURCES = testc.c
testp_LDADD = $(lib_onig)
testp_CFLAGS = -DPOSIX_TEST -Wall -Wno-invalid-source-encoding


testcu_SOURCES = testu.c
testcu_LDADD = $(lib_onig)

test_regset_SOURCES = test_regset.c
test_regset_LDADD = $(lib_onig)


gcov:
	make CFLAGS="--coverage" test_utf8
	make CFLAGS="--coverage" test_syntax
	make CFLAGS="--coverage" testc
	make CFLAGS="--coverage" testp
	make CFLAGS="--coverage" testcu
	make CFLAGS="--coverage" test_regset