Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
R
radsecproxy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
eduroam
radsecproxy
Commits
17082d27
Commit
17082d27
authored
Sep 27, 2011
by
Linus Nordberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for 'make check' and a dummy test.
parent
af81fa74
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
1 deletion
+24
-1
Makefile.am
Makefile.am
+2
-0
configure.ac
configure.ac
+4
-1
tests/Makefile.am
tests/Makefile.am
+7
-0
tests/t_fticks.c
tests/t_fticks.c
+11
-0
No files found.
Makefile.am
View file @
17082d27
AUTOMAKE_OPTIONS
=
foreign
SUBDIRS
=
tests
sbin_PROGRAMS
=
radsecproxy
bin_PROGRAMS
=
catgconf
noinst_LIBRARIES
=
librsp.a
...
...
configure.ac
View file @
17082d27
...
...
@@ -92,4 +92,7 @@ AM_CONDITIONAL(HAVE_DOCBOOK2X_MAN, test "$DOCBOOK2X_MAN" = "yes")
AC_SUBST(TARGET_CFLAGS)
AC_SUBST(TARGET_LDFLAGS)
AX_CHECK_SSL
AC_OUTPUT(Makefile)
AC_OUTPUT([
Makefile
tests/Makefile
])
tests/Makefile.am
0 → 100644
View file @
17082d27
check_PROGRAMS
=
t_fticks
AM_CFLAGS
=
-g
-Wall
-Werror
@TARGET_CFLAGS@
AM_LDFLAGS
=
@SSL_LDFLAGS@ @TARGET_LDFLAGS@
LDADD
=
$(top_builddir)
/librsp.a @SSL_LIBS@
TESTS
=
$(check_PROGRAMS)
tests/t_fticks.c
0 → 100644
View file @
17082d27
#include "../radsecproxy.h"
#include "../fticks.h"
int
main
(
int
argc
,
char
*
argv
[])
{
uint8_t
buf
[
128
];
fticks_hashmac
((
const
uint8_t
*
)
"xyzzy"
,
NULL
,
sizeof
(
buf
),
buf
);
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment