Skip to content

Commit

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

int TestBufferedReadCallback()
{
TestContext gContext;
static TestContext gContext;
gSuite = &theSuite;
nlTestRunner(&theSuite, &gContext);
return (nlTestRunnerStats(&theSuite));
Expand Down
2 changes: 1 addition & 1 deletion src/app/tests/TestClusterStateCache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ nlTestSuite theSuite =

int TestClusterStateCache()
{
TestContext gContext;
static TestContext gContext;
gSuite = &theSuite;
nlTestRunner(&theSuite, &gContext);
return (nlTestRunnerStats(&theSuite));
Expand Down
2 changes: 1 addition & 1 deletion src/app/tests/TestCommandInteraction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,7 @@ nlTestSuite sSuite =

int TestCommandInteraction()
{
TestContext gContext;
static TestContext gContext;
nlTestRunner(&sSuite, &gContext);
return (nlTestRunnerStats(&sSuite));
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/tests/TestEventOverflow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ nlTestSuite sSuite =

int TestEventOverflow()
{
TestContext gContext;
static TestContext gContext;
nlTestRunner(&sSuite, &gContext);
return (nlTestRunnerStats(&sSuite));
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/tests/TestFabricScopedEventLogging.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ nlTestSuite sSuite =

int TestFabricScopedEventLogging()
{
TestContext gContext;
static TestContext gContext;
nlTestRunner(&sSuite, &gContext);
return (nlTestRunnerStats(&sSuite));
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/tests/TestInteractionModelEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ nlTestSuite sSuite =

int TestInteractionModelEngine()
{
TestContext gContext;
static TestContext gContext;
nlTestRunner(&sSuite, &gContext);
return (nlTestRunnerStats(&sSuite));
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/tests/TestReportingEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ nlTestSuite sSuite =

int TestReportingEngine()
{
TestContext gContext;
static TestContext gContext;
nlTestRunner(&sSuite, &gContext);
return (nlTestRunnerStats(&sSuite));
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/tests/TestTimedHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ nlTestSuite sSuite =

int TestTimedHandler()
{
TestContext gContext;
static TestContext gContext;
nlTestRunner(&sSuite, &gContext);
return (nlTestRunnerStats(&sSuite));
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/tests/TestWriteInteraction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ nlTestSuite sSuite =

int TestWriteInteraction()
{
TestContext gContext;
static TestContext gContext;
nlTestRunner(&sSuite, &gContext);
return (nlTestRunnerStats(&sSuite));
}
Expand Down
2 changes: 1 addition & 1 deletion src/controller/tests/TestEventCaching.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ nlTestSuite sSuite =

int TestEventCaching()
{
TestContext gContext;
static TestContext gContext;
gSuite = &sSuite;
nlTestRunner(&sSuite, &gContext);
return (nlTestRunnerStats(&sSuite));
Expand Down
2 changes: 1 addition & 1 deletion src/controller/tests/TestEventChunking.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ nlTestSuite sSuite =

int TestReadChunkingTests()
{
TestContext gContext;
static TestContext gContext;
gSuite = &sSuite;
nlTestRunner(&sSuite, &gContext);
return (nlTestRunnerStats(&sSuite));
Expand Down
2 changes: 1 addition & 1 deletion src/controller/tests/TestReadChunking.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ nlTestSuite sSuite =

int TestReadChunkingTests()
{
TestContext gContext;
static TestContext gContext;
gSuite = &sSuite;
nlTestRunner(&sSuite, &gContext);
return (nlTestRunnerStats(&sSuite));
Expand Down
2 changes: 1 addition & 1 deletion src/controller/tests/TestServerCommandDispatch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ nlTestSuite sSuite =

int TestCommandInteractionTest()
{
TestContext gContext;
static TestContext gContext;
nlTestRunner(&sSuite, &gContext);
return (nlTestRunnerStats(&sSuite));
}
Expand Down
2 changes: 1 addition & 1 deletion src/controller/tests/TestWriteChunking.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ nlTestSuite sSuite =

int TestWriteChunkingTests()
{
TestContext gContext;
static TestContext gContext;
gSuite = &sSuite;
nlTestRunner(&sSuite, &gContext);
return (nlTestRunnerStats(&sSuite));
Expand Down
2 changes: 1 addition & 1 deletion src/controller/tests/data_model/TestCommands.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ nlTestSuite sSuite =

int TestCommandInteractionTest()
{
TestContext gContext;
static TestContext gContext;
nlTestRunner(&sSuite, &gContext);
return (nlTestRunnerStats(&sSuite));
}
Expand Down
2 changes: 1 addition & 1 deletion src/controller/tests/data_model/TestRead.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4165,7 +4165,7 @@ nlTestSuite sSuite =

int TestReadInteractionTest()
{
TestContext gContext;
static TestContext gContext;
nlTestRunner(&sSuite, &gContext);
return (nlTestRunnerStats(&sSuite));
}
Expand Down
2 changes: 1 addition & 1 deletion src/controller/tests/data_model/TestWrite.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ nlTestSuite sSuite =

int TestWriteInteractionTest()
{
TestContext gContext;
static TestContext gContext;
nlTestRunner(&sSuite, &gContext);
return (nlTestRunnerStats(&sSuite));
}
Expand Down

0 comments on commit 52699c4

Please sign in to comment.