tests: Default to quiet
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
committed by
Keith Winstein
parent
ea3ad786fa
commit
a611ef5821
@@ -53,7 +53,7 @@
|
||||
|
||||
using Crypto::AlignedBuffer;
|
||||
|
||||
bool verbose = true;
|
||||
bool verbose = false;
|
||||
|
||||
bool equal( const AlignedBuffer &a, const AlignedBuffer &b ) {
|
||||
return ( a.len() == b.len() )
|
||||
@@ -540,8 +540,8 @@ void test_iterative( void ) {
|
||||
|
||||
int main( int argc, char *argv[] )
|
||||
{
|
||||
if ( ( argc >= 2 ) && !strcmp( argv[ 1 ], "-q" ) ) {
|
||||
verbose = false;
|
||||
if ( argc >= 2 && strcmp( argv[ 1 ], "-v" ) == 0 ) {
|
||||
verbose = true;
|
||||
}
|
||||
|
||||
test_all_vectors();
|
||||
|
||||
Reference in New Issue
Block a user