You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Moved streamer open calls just before execute_command_lists.
Removed zeEventQueryStatus() check from streamer tests since they have a dedicated test.
Adjusted notifyNReport and samplingPeriod values to minimize the test runtimes.
Added a new read function in harness to read specific number of reports.
Related-To: VLCLJ-2365
Signed-off-by: shubham kumar <[email protected]>
/* The time in seconds for the buffer to overflow would be 2 * (notifyEveryNReports * (samplingPeriod/nanoSecToSeconds))
1221
-
* For this test it will be 512 seconds which ensure this limit is never likely to hit even on the slowest of platform
1222
-
*/
1220
+
// The time in seconds for the buffer to overflow would be 2 * (notifyEveryNReports * (samplingPeriod/nanoSecToSeconds)) for this test it will be 512 seconds
1223
1221
uint32_t notifyEveryNReports = 256;
1224
1222
uint32_t samplingPeriod = 1000000000;
1225
1223
for (auto device : devices) {
@@ -1305,7 +1303,6 @@ TEST_F(
1305
1303
1306
1304
/* The time in seconds for the buffer to overflow would be 2 * (notifyEveryNReports * (samplingPeriod/nanoSecToSeconds))
1307
1305
* For this test it will be 9 seconds. The execution time between metric_streamer_open_for_device and synchronize observed on average is less than 50% of this
1308
-
* which ensure this limit is never likely to hit even on the slowest of platform
1309
1306
*/
1310
1307
uint32_t notifyEveryNReports = 4500;
1311
1308
for (auto device : devices) {
@@ -1408,7 +1405,6 @@ TEST_F(
1408
1405
1409
1406
/* The time in seconds for the buffer to overflow would be 2 * (notifyEveryNReports * (samplingPeriod/nanoSecToSeconds))
1410
1407
* For this test it will be 9 seconds. The execution time between metric_streamer_open_for_device and synchronize observed on average is less than 50% of this
1411
-
* which ensure this limit is never likely to hit even on the slowest of platform
0 commit comments