File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
conformance_tests/sysman/test_sysman_memory/src Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -275,9 +275,6 @@ TEST_F(
275
275
<< " Read counter did not increase after workload" ;
276
276
EXPECT_GE (bandwidth_after.writeCounter , bandwidth_before.writeCounter )
277
277
<< " Write counter did not increase after workload" ;
278
- EXPECT_GE (bandwidth_after.maxBandwidth , bandwidth_before.maxBandwidth )
279
- << " Max bandwidth did not increase after workload" ;
280
-
281
278
auto percentage_bandwidth =
282
279
1000000 *
283
280
((bandwidth_after.readCounter - bandwidth_before.readCounter ) +
@@ -288,7 +285,8 @@ TEST_F(
288
285
LOG_INFO << " Percentage Bandwidth: " << percentage_bandwidth << " %" ;
289
286
EXPECT_GT (percentage_bandwidth, 0.0 )
290
287
<< " Percentage bandwidth is not greater than zero" ;
291
- EXPECT_LT (percentage_bandwidth, 100.0 );
288
+ EXPECT_LT (percentage_bandwidth, 100.0 )
289
+ << " Percentage bandwidth is greater than 100%" ;
292
290
}
293
291
// Free device memory
294
292
lzt::free_memory (src_ptr);
You can’t perform that action at this time.
0 commit comments