File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -68,3 +68,6 @@ script:
6868 - if [ -n "$HOST" ]; then export USE_HOST="--host=$HOST"; fi 
6969 - if [ "x$HOST" = "xi686-linux-gnu" ]; then export CC="$CC -m32"; fi 
7070 - ./configure --enable-experimental=$EXPERIMENTAL --enable-endomorphism=$ENDOMORPHISM --with-field=$FIELD --with-bignum=$BIGNUM --with-scalar=$SCALAR --enable-ecmult-static-precomputation=$STATICPRECOMPUTATION --with-ecmult-gen-precision=$ECMULTGENPRECISION --enable-module-ecdh=$ECDH --enable-module-recovery=$RECOVERY --enable-jni=$JNI $EXTRAFLAGS $USE_HOST && make -j2 $BUILD 
71+ after_script :
72+     - cat ./tests.log 
73+     - cat ./exhaustive_tests.log 
Original file line number Diff line number Diff line change @@ -5169,6 +5169,12 @@ void run_ecdsa_openssl(void) {
51695169int  main (int  argc , char  * * argv ) {
51705170    unsigned char   seed16 [16 ] =  {0 };
51715171    unsigned char   run32 [32 ] =  {0 };
5172+ 
5173+     /* Disable buffering for stdout to improve reliability of getting 
5174+      * diagnostic information. Happens right at the start of main because 
5175+      * setbuf must be used before any other operation on the stream. */ 
5176+     setbuf (stdout , NULL );
5177+ 
51725178    /* find iteration count */ 
51735179    if  (argc  >  1 ) {
51745180        count  =  strtol (argv [1 ], NULL , 0 );
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments