Skip to content

Commit 3106108

Browse files
committed
test: test/Makefile.am refactor check programs
Signed-off-by: Hans Zandbelt <[email protected]>
1 parent 89eebcf commit 3106108

File tree

2 files changed

+9
-19
lines changed

2 files changed

+9
-19
lines changed

ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
11/11/2025
22
- test: add test/test_http.c and migrate http accept tests there from test.c
3+
- test: test/Makefile.am refactor check programs
34

45
11/07/2025
56
- support individual SameSite cookie settings on the session cookie, state cookie and Discovery CSRF

test/Makefile.am

Lines changed: 8 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -50,25 +50,14 @@ libtest_la_SOURCES = \
5050
helper.c \
5151
stub.c
5252

53-
TESTS += test_jose
54-
test_jose_CFLAGS = @CHECK_CFLAGS@ ${AM_CFLAGS}
55-
test_jose_LDADD = @CHECK_LIBS@ ${LDADD} libtest.la
56-
test_jose_SOURCES = test_jose.c
57-
58-
TESTS += test_util
59-
test_util_CFLAGS = @CHECK_CFLAGS@ ${AM_CFLAGS}
60-
test_util_LDADD = @CHECK_LIBS@ ${LDADD} libtest.la
61-
test_util_SOURCES = test_util.c
62-
63-
TESTS += test_cfg
64-
test_cfg_CFLAGS = @CHECK_CFLAGS@ ${AM_CFLAGS}
65-
test_cfg_LDADD = @CHECK_LIBS@ ${LDADD} libtest.la
66-
test_cfg_SOURCES = test_cfg.c
67-
68-
TESTS += test_http
69-
test_http_CFLAGS = @CHECK_CFLAGS@ ${AM_CFLAGS}
70-
test_http_LDADD = @CHECK_LIBS@ ${LDADD} libtest.la
71-
test_http_SOURCES = test_http.c
53+
AM_CFLAGS += @CHECK_CFLAGS@
54+
LDADD += libtest.la @CHECK_LIBS@
55+
56+
TESTS += \
57+
test_cfg \
58+
test_util \
59+
test_jose \
60+
test_http
7261

7362
endif
7463

0 commit comments

Comments
 (0)