Unverified Commit f96c1e71 authored by kladko's avatar kladko

SKALE-3151-cannot-decrypt-storage

parent 07cf026c
...@@ -82,6 +82,18 @@ public: ...@@ -82,6 +82,18 @@ public:
} }
}; };
class TestFixtureNoReset {
public:
TestFixtureNoReset() {
setOptions(L_INFO, false, true);
initAll(L_INFO, false, true);
}
~TestFixtureNoReset() {
TestUtils::destroyEnclave();
}
};
class TestFixtureHTTPS { class TestFixtureHTTPS {
public: public:
TestFixtureHTTPS() { TestFixtureHTTPS() {
...@@ -691,4 +703,10 @@ TEST_CASE_METHOD(TestFixture, "Many threads ecdsa dkg bls", "[many-threads-crypt ...@@ -691,4 +703,10 @@ TEST_CASE_METHOD(TestFixture, "Many threads ecdsa dkg bls", "[many-threads-crypt
} }
} }
TEST_CASE_METHOD(TestFixture, "First run", "[first-run]") {
}
TEST_CASE_METHOD(TestFixtureNoReset, "Second run", "[second-run]") {
}
...@@ -28,8 +28,9 @@ username = getpass.getuser() ...@@ -28,8 +28,9 @@ username = getpass.getuser()
topDir = os.getcwd() + "/sgxwallet" topDir = os.getcwd() + "/sgxwallet"
print("Top directory is:" + topDir) print("Top directory is:" + topDir)
testList = ["[first-run]",
testList = [ "[cert-sign]", "[second-run]",
"[cert-sign]",
"[get-server-status]", "[get-server-status]",
"[get-server-version]", "[get-server-version]",
"[backup-key]", "[backup-key]",
......
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