@@ -114,24 +114,23 @@ const buildLinux = async (buildCwd) => {
114114 `--prefix="${ extractPath } "` ,
115115 `--openssldir="${ extractPath } "`
116116 ] ;
117- await execPromise ( `./Configure ${ arguments . join ( " " ) } ` , {
117+ await execPromise ( `./Configure ${ arguments . join ( ' ' ) } ` , {
118118 cwd : buildCwd
119119 } , { pipeOutput : true } ) ;
120120
121121 await applyOpenSSLPatches ( buildCwd ) ;
122122
123123 // only build the libraries, not the tests/fuzzer or apps
124- await execPromise ( " make build_libs" , {
124+ await execPromise ( ' make build_libs' , {
125125 cwd : buildCwd
126126 } , { pipeOutput : true } ) ;
127127
128- //TODO: uncomment
129- // await execPromise("make test", {
130- // cwd: buildCwd
131- // }, { pipeOutput: true });
128+ await execPromise ( 'make test' , {
129+ cwd : buildCwd
130+ } , { pipeOutput : true } ) ;
132131
133132 //only install software, not the docs
134- await execPromise ( " make install_sw" , {
133+ await execPromise ( ' make install_sw' , {
135134 cwd : buildCwd ,
136135 maxBuffer : 10 * 1024 * 1024 // we should really just use spawn
137136 } , { pipeOutput : true } ) ;
0 commit comments