File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -14,9 +14,6 @@ namespace NEO {
1414
1515namespace WaitUtils {
1616
17- constexpr uint64_t defaultCounterValue = 10000 ;
18- constexpr uint32_t defaultControlValue = 0 ;
19-
2017uint64_t waitpkgCounterValue = defaultCounterValue;
2118uint32_t waitpkgControlValue = defaultControlValue;
2219
Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ namespace NEO {
1717
1818namespace WaitUtils {
1919
20+ constexpr uint64_t defaultCounterValue = 10000 ;
21+ constexpr uint32_t defaultControlValue = 0 ;
2022constexpr uint32_t defaultWaitCount = 1u ;
2123
2224extern uint64_t waitpkgCounterValue;
Original file line number Diff line number Diff line change @@ -22,6 +22,10 @@ extern unsigned int testCaseMaxTimeInMs;
2222
2323void BaseUltConfigListener::OnTestStart (const ::testing::TestInfo &) {
2424 WaitUtils::waitpkgUse = false ;
25+ WaitUtils::waitpkgCounterValue = WaitUtils::defaultCounterValue;
26+ WaitUtils::waitpkgControlValue = WaitUtils::defaultControlValue;
27+ WaitUtils::waitCount = WaitUtils::defaultWaitCount;
28+
2529 maxOsContextCountBackup = MemoryManager::maxOsContextCount;
2630 debugVarSnapshot = debugManager.flags ;
2731 injectFcnSnapshot = debugManager.injectFcn ;
You can’t perform that action at this time.
0 commit comments