We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84aaff2 commit 26e8212Copy full SHA for 26e8212
Jenkinsfile
@@ -15,7 +15,7 @@ node('builder'){
15
sh 'make'
16
}
17
stage('Testing') {
18
- sh 'make check'
+ sh 'export LSAN_OPTIONS=verbosity=1:log_threads=1 && make check'
19
sh 'xsltproc /opt/ctest/ctest2junix.xsl tests/Testing/$(head -1 tests/Testing/TAG)/Test.xml > CTestResults.xml '
20
junit 'CTestResults.xml'
21
cobertura coberturaReportFile: 'coverage.xml'
tests/test_sig.c
@@ -90,7 +90,7 @@ void test_bigchain_build_json_inputs(void) {
90
91
void test_bigchain_build_json_tx(void) {
92
BIGCHAIN_TX tx;
93
- char json[6000] = {0};
+ char json[600] = {0};
94
95
prepare_tx(&tx);
96
bigchain_build_json_tx(&tx, json);
0 commit comments