File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ matrix:
77
77
apt :
78
78
packages :
79
79
- valgrind
80
-
80
+
81
81
before_install : mkdir -p `dirname $GUAVA_JAR`
82
82
install : if [ ! -f $GUAVA_JAR ]; then wget $GUAVA_URL -O $GUAVA_JAR; fi
83
83
before_script : ./autogen.sh
@@ -93,4 +93,8 @@ script:
93
93
make -j2 &&
94
94
travis_wait 30 valgrind --error-exitcode=42 ./tests 16 &&
95
95
travis_wait 30 valgrind --error-exitcode=42 ./exhaustive_tests;
96
- fi
96
+ fi
97
+
98
+ after_script :
99
+ - cat ./tests.log
100
+ - 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