tests: dont polute stderr if the test succeeds/skips
authorDaniel Vetter <daniel.vetter@ffwll.ch>
Tue, 27 Nov 2012 19:04:15 +0000 (20:04 +0100)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Wed, 28 Nov 2012 10:08:37 +0000 (11:08 +0100)
Results in spurious 'warn' results in piglit. Also don't print
progress indicators when not outputting to a terminal.

Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
lib/drmtest.c
tests/gem_cpu_reloc.c
tests/gem_cs_prefetch.c
tests/gem_ctx_create.c
tests/sysfs_rps.c

index c309851..a18b3a0 100644 (file)
@@ -543,6 +543,9 @@ void drmtest_progress(const char *header, uint64_t i, uint64_t total)
 {
        int divider = 200;
 
+       if (!isatty(fileno(stderr)))
+               return;
+
        if (i+1 >= total) {
                fprintf(stderr, "\r%s100%%\n", header);
                return;
index 787e507..baf8301 100644 (file)
@@ -209,7 +209,7 @@ int main(int argc, char **argv)
                drmtest_progress("gem_cpu_reloc: ", 2*count+i, 3*count);
        }
 
-       fprintf(stderr, "Test suceeded, cleanup up - this might take a while.\n");
+       printf("Test suceeded, cleanup up - this might take a while.\n");
        close(fd);
 
        return 0;
index 9ba8028..9ef35eb 100644 (file)
@@ -163,7 +163,7 @@ int main(int argc, char **argv)
                drmtest_progress("gem_cs_prefetch: ", i, count);
        }
 
-       fprintf(stderr, "Test suceeded, cleanup up - this might take a while.\n");
+       printf("Test suceeded, cleanup up - this might take a while.\n");
        drm_intel_bufmgr_destroy(bufmgr);
 
        close(fd);
index def76d3..84ef214 100644 (file)
@@ -49,7 +49,7 @@ int main(int argc, char *argv[])
 
        ret = drmIoctl(fd, CONTEXT_CREATE_IOCTL, &create);
        if (ret != 0 && (errno == ENODEV || errno == EINVAL)) {
-               fprintf(stderr, "Kernel is too old, or contexts not supported: %s\n",
+               printf("Kernel is too old, or contexts not supported: %s\n",
                        strerror(errno));
                exit(77);
        } else if (ret != 0) {
index 94c4382..8ba541c 100644 (file)
@@ -147,7 +147,7 @@ int main(int argc, char *argv[])
                assert(ret != -1);
                junk->filp = fopen(path, junk->mode);
                if (junk->filp == NULL) {
-                       fprintf(stderr, "Kernel is too old. GTFO\n");
+                       printf("Kernel is too old. GTFO\n");
                        exit(77);
                }
                val = readval(junk->filp);