From dcf996c31eb818a85adb0187cdb4df0b9f14d1d9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Sun, 1 Feb 2015 12:59:27 +0100 Subject: [PATCH] gallium: run gallium tests if GALLIUM_TESTS=1 is set Reviewed-by: Glenn Kennard --- .../auxiliary/target-helpers/inline_debug_helper.h | 4 ++++ src/gallium/auxiliary/util/u_tests.c | 9 ++++++++- src/gallium/auxiliary/util/u_tests.h | 4 ++-- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/src/gallium/auxiliary/target-helpers/inline_debug_helper.h b/src/gallium/auxiliary/target-helpers/inline_debug_helper.h index 6fe667d3fbd..faae1800e72 100644 --- a/src/gallium/auxiliary/target-helpers/inline_debug_helper.h +++ b/src/gallium/auxiliary/target-helpers/inline_debug_helper.h @@ -4,6 +4,7 @@ #include "pipe/p_compiler.h" #include "util/u_debug.h" +#include "util/u_tests.h" /* Helper function to wrap a screen with @@ -49,6 +50,9 @@ debug_screen_wrap(struct pipe_screen *screen) screen = noop_screen_create(screen); #endif + if (debug_get_bool_option("GALLIUM_TESTS", FALSE)) + util_run_tests(screen); + return screen; } diff --git a/src/gallium/auxiliary/util/u_tests.c b/src/gallium/auxiliary/util/u_tests.c index b42f5e137ba..764c4c31944 100644 --- a/src/gallium/auxiliary/util/u_tests.c +++ b/src/gallium/auxiliary/util/u_tests.c @@ -261,7 +261,14 @@ tgsi_vs_window_space_position(struct pipe_context *ctx) * context_create. */ void -util_run_tests(struct pipe_context *ctx) +util_run_tests(struct pipe_screen *screen) { + struct pipe_context *ctx = screen->context_create(screen, NULL); + tgsi_vs_window_space_position(ctx); + + ctx->destroy(ctx); + + puts("Done. Exiting.."); + exit(0); } diff --git a/src/gallium/auxiliary/util/u_tests.h b/src/gallium/auxiliary/util/u_tests.h index a1439347d27..49ae54f876b 100644 --- a/src/gallium/auxiliary/util/u_tests.h +++ b/src/gallium/auxiliary/util/u_tests.h @@ -30,8 +30,8 @@ #include "pipe/p_compiler.h" -struct pipe_context; +struct pipe_screen; -void util_run_tests(struct pipe_context *ctx); +void util_run_tests(struct pipe_screen *screen); #endif -- 2.30.2