Skip to content

Commit

Permalink
Save stack for Nordic build, some more
Browse files Browse the repository at this point in the history
  • Loading branch information
tcarmelveilleux committed Jun 22, 2022
1 parent 52699c4 commit e62391e
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/app/tests/TestReadInteraction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2788,7 +2788,7 @@ nlTestSuite sSuite =

int TestReadInteraction()
{
TestContext sContext;
static TestContext sContext;
nlTestRunner(&sSuite, &sContext);
return (nlTestRunnerStats(&sSuite));
}
Expand Down
2 changes: 1 addition & 1 deletion src/messaging/tests/TestExchangeMgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ nlTestSuite sSuite =
*/
int TestExchangeMgr()
{
TestContext sContext;
static TestContext sContext;

// Run test suit against one context
nlTestRunner(&sSuite, &sContext);
Expand Down
2 changes: 1 addition & 1 deletion src/messaging/tests/TestReliableMessageProtocol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1689,7 +1689,7 @@ nlTestSuite sSuite =
*/
int TestReliableMessageProtocol()
{
TestContext sContext;
static TestContext sContext;

// Run test suit against one context
nlTestRunner(&sSuite, &sContext);
Expand Down
2 changes: 1 addition & 1 deletion src/protocols/secure_channel/tests/TestCASESession.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1038,7 +1038,7 @@ int CASE_TestSecurePairing_Teardown(void * inContext)
*/
int TestCASESession()
{
TestContext sContext;
static TestContext sContext;

// Run test suit against one context
nlTestRunner(&sSuite, &sContext);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ int Finalize(void * aContext)
*/
int TestMessageCounterManager()
{
TestContext sContext;
static TestContext sContext;

// Run test suit against one context
nlTestRunner(&sSuite, &sContext);
Expand Down
2 changes: 1 addition & 1 deletion src/protocols/secure_channel/tests/TestPASESession.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ int TestSecurePairing_Teardown(void * inContext)
*/
int TestPASESession()
{
TestContext sContext;
static TestContext sContext;

// Run test suit against one context
nlTestRunner(&sSuite, &sContext);
Expand Down
2 changes: 1 addition & 1 deletion src/transport/raw/tests/TestTCP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ static int Finalize(void * aContext)

int TestTCP()
{
TestContext sContext;
static TestContext sContext;

// Run test suit against one context
nlTestRunner(&sSuite, &sContext);
Expand Down
2 changes: 1 addition & 1 deletion src/transport/raw/tests/TestUDP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ static int Finalize(void * aContext)

int TestUDP()
{
TestContext sContext;
static TestContext sContext;

// Run test suit against one context
nlTestRunner(&sSuite, &sContext);
Expand Down
2 changes: 1 addition & 1 deletion src/transport/tests/TestSessionManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1015,7 +1015,7 @@ int Finalize(void * aContext)
*/
int TestSessionManager()
{
TestContext sContext;
static TestContext sContext;

// Run test suit against one context
nlTestRunner(&sSuite, &sContext);
Expand Down

0 comments on commit e62391e

Please sign in to comment.