mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2026-08-21 21:32:56 +00:00
tests: sprinkle igt logging
All the cases that simply dump some debug information and couldn't be converted to some of the fancier macros. Some information output removed when it's redundant with the subtest status. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
+4
-4
@@ -127,7 +127,7 @@ igt_main
|
||||
flags &= ~TEST_READ;
|
||||
if (IS_BROADWATER(devid) || IS_CRESTLINE(devid)) {
|
||||
/* chipset is completely fubar */
|
||||
printf("coherency broken on i965g/gm\n");
|
||||
igt_info("coherency broken on i965g/gm\n");
|
||||
flags = 0;
|
||||
}
|
||||
|
||||
@@ -147,7 +147,7 @@ igt_main
|
||||
igt_subtest("reads") {
|
||||
igt_require(flags & TEST_READ);
|
||||
|
||||
printf("checking partial reads\n");
|
||||
igt_info("checking partial reads\n");
|
||||
|
||||
for (i = 0; i < ROUNDS; i++) {
|
||||
uint8_t val0 = i;
|
||||
@@ -174,7 +174,7 @@ igt_main
|
||||
igt_subtest("writes") {
|
||||
igt_require(flags & TEST_WRITE);
|
||||
|
||||
printf("checking partial writes\n");
|
||||
igt_info("checking partial writes\n");
|
||||
|
||||
for (i = 0; i < ROUNDS; i++) {
|
||||
uint8_t val0 = i, val1;
|
||||
@@ -219,7 +219,7 @@ igt_main
|
||||
igt_subtest("read-writes") {
|
||||
igt_require((flags & TEST_BOTH) == TEST_BOTH);
|
||||
|
||||
printf("checking partial writes after partial reads\n");
|
||||
igt_info("checking partial writes after partial reads\n");
|
||||
|
||||
for (i = 0; i < ROUNDS; i++) {
|
||||
uint8_t val0 = i, val1, val2;
|
||||
|
||||
Reference in New Issue
Block a user