Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
mbedtls
Commits
0f79babd
Commit
0f79babd
authored
Apr 09, 2014
by
Manuel Pégourié-Gonnard
Committed by
Paul Bakker
Apr 09, 2014
Browse files
Disable timing_selftest() for now
parent
17b85cbd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
library/timing.c
library/timing.c
+3
-0
programs/test/selftest.c
programs/test/selftest.c
+4
-1
No files found.
library/timing.c
View file @
0f79babd
...
...
@@ -326,6 +326,9 @@ void m_sleep( int milliseconds )
/*
* Checkup routine
*
* Warning: this is work in progress, some tests may not be reliable enough
* yet! False positives may happen.
*/
int
timing_self_test
(
int
verbose
)
{
...
...
programs/test/selftest.c
View file @
0f79babd
...
...
@@ -195,7 +195,10 @@ int main( int argc, char *argv[] )
#endif
#endif
#if defined(POLARSSL_TIMING_C)
/*
* Not reliable enough yet
*/
#if 0 && defined(POLARSSL_TIMING_C)
if( ( ret = timing_self_test( v ) ) != 0 )
return( ret );
#endif
...
...
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