Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nettle
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
5
Merge Requests
5
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Nettle
nettle
Commits
94269a22
Commit
94269a22
authored
Oct 22, 2014
by
Niels Möller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fallback for missing getline (used in the testsuite).
parent
8df19540
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
44 additions
and
1 deletion
+44
-1
ChangeLog
ChangeLog
+4
-0
configure.ac
configure.ac
+2
-1
testsuite/ed25519-test.c
testsuite/ed25519-test.c
+38
-0
No files found.
ChangeLog
View file @
94269a22
2014-10-22 Niels Möller <nisse@lysator.liu.se>
* configure.ac: Check for getline function.
* testsuite/ed25519-test.c (getline) [!HAVE_GETLINE]: Fallback
definition.
* Makefile.in (clean-here): Unconditionally delete .so and .dll
files.
(IMPLICIT_TARGETS): Deleted variable.
...
...
configure.ac
View file @
94269a22
...
...
@@ -647,7 +647,8 @@ AC_CHECK_HEADERS([valgrind/memcheck.h])
LSH_FUNC_ALLOCA
LSH_FUNC_STRERROR
# Used in the testsuite
AC_CHECK_FUNCS(getline)
AC_C_BIGENDIAN
LSH_GCC_ATTRIBUTES
...
...
testsuite/ed25519-test.c
View file @
94269a22
...
...
@@ -117,6 +117,44 @@ test_one (const char *line)
free
(
msg
);
}
#ifndef HAVE_GETLINE
static
ssize_t
getline
(
char
**
lineptr
,
size_t
*
n
,
FILE
*
f
)
{
size_t
i
;
int
c
;
if
(
!*
lineptr
)
{
*
n
=
500
;
*
lineptr
=
xalloc
(
*
n
);
}
i
=
0
;
do
{
c
=
getc
(
f
);
if
(
c
<
0
)
{
if
(
i
>
0
)
break
;
return
-
1
;
}
(
*
lineptr
)
[
i
++
]
=
c
;
if
(
i
==
*
n
)
{
*
n
*=
2
;
*
lineptr
=
realloc
(
*
lineptr
,
*
n
);
if
(
!*
lineptr
)
die
(
"Virtual memory exhausted.
\n
"
);
}
}
while
(
c
!=
'\n'
);
(
*
lineptr
)
[
i
]
=
0
;
return
i
;
}
#endif
void
test_main
(
void
)
{
...
...
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