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:
68
68
- if [ -n "$HOST" ]; then export USE_HOST="--host=$HOST"; fi
69
69
- if [ "x$HOST" = "xi686-linux-gnu" ]; then export CC="$CC -m32"; fi
70
70
- ./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) {
5169
5169
int main (int argc , char * * argv ) {
5170
5170
unsigned char seed16 [16 ] = {0 };
5171
5171
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
+
5172
5178
/* find iteration count */
5173
5179
if (argc > 1 ) {
5174
5180
count = strtol (argv [1 ], NULL , 0 );
You can’t perform that action at this time.
0 commit comments