summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Heidelberg <david.heidelberg@collabora.com>2024-05-25 13:52:15 -0700
committerDavid Heidelberg <david.heidelberg@collabora.com>2024-05-25 13:53:11 -0700
commit59bdc8c4e7b7420e53c0cda0c29dcf001733d5bf (patch)
tree48914f9fe7090c2e3a0984f8c6541a185eb4ddbb
parentcee2190b5d44ad5c64069563746c7f9a0be6d75d (diff)
egl: missing EGLconfig isn't stderr material
It's a skip, not an error. Signed-off-by: David Heidelberg <david.heidelberg@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/piglit/-/merge_requests/917>
-rw-r--r--tests/egl/egl-create-msaa-pbuffer-surface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/egl/egl-create-msaa-pbuffer-surface.c b/tests/egl/egl-create-msaa-pbuffer-surface.c
index 7889c2d9e..e53024a01 100644
--- a/tests/egl/egl-create-msaa-pbuffer-surface.c
+++ b/tests/egl/egl-create-msaa-pbuffer-surface.c
@@ -81,7 +81,7 @@ main(int argc, char *argv[])
* and event_loop never calls draw.
*/
if (!draw_called) {
- fprintf(stderr, "could not init such EGLconfig, skip ...\n");
+ fprintf(stdout, "Could not init such EGLconfig, skipping the test.\n");
piglit_report_result(PIGLIT_SKIP);
}