Unverified Commit 8e08656b authored by kladko's avatar kladko

SKALE-3159-test-fails

parent 2087b3b3
...@@ -46,10 +46,10 @@ ...@@ -46,10 +46,10 @@
#include "Log.h" #include "Log.h"
#include "common.h" #include "common.h"
int printDebugInfo = -1; bool printDebugInfo = false;
int useHTTPS = -1; bool useHTTPS = false;
int enterBackupKey = -1; bool enterBackupKey = false;
int autoconfirm = -1; bool autoconfirm = false;
shared_ptr <SGXRegistrationServer> SGXRegistrationServer::server = nullptr; shared_ptr <SGXRegistrationServer> SGXRegistrationServer::server = nullptr;
shared_ptr <HttpServer> SGXRegistrationServer::httpServer = nullptr; shared_ptr <HttpServer> SGXRegistrationServer::httpServer = nullptr;
......
<EnclaveConfiguration> <EnclaveConfiguration>
<ProdID>0</ProdID> <ProdID>0</ProdID>
<ISVSVN>0</ISVSVN> <ISVSVN>0</ISVSVN>
<StackMaxSize>0x100000</StackMaxSize> <StackMaxSize>0x1000000</StackMaxSize>
<HeapMaxSize>0x1000000</HeapMaxSize> <HeapMaxSize>0x10000000</HeapMaxSize>
<TCSNum>32</TCSNum> <TCSNum>32</TCSNum>
<TCSMaxNum>32</TCSMaxNum> <TCSMaxNum>32</TCSMaxNum>
<TCSMinPool>32</TCSMinPool> <TCSMinPool>32</TCSMinPool>
......
...@@ -44,9 +44,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ...@@ -44,9 +44,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <stdbool.h> #include <stdbool.h>
extern int useHTTPS; extern bool useHTTPS;
extern int enterBackupKey; extern bool enterBackupKey;
extern int autoconfirm; extern bool autoconfirm;
#define BUF_LEN 4096 #define BUF_LEN 4096
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment