Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/4] lib: Factor out a function to check if an environment variable is set
@ 2013-02-20 14:53 Damien Lespiau
  2013-02-20 14:53 ` [PATCH 2/4] lib: Allow to override the device id at run time Damien Lespiau
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Damien Lespiau @ 2013-02-20 14:53 UTC (permalink / raw)
  To: intel-gfx

Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
---
 lib/drmtest.c |   24 +++++++++++++-----------
 1 files changed, 13 insertions(+), 11 deletions(-)

diff --git a/lib/drmtest.c b/lib/drmtest.c
index 117fb31..641028c 100644
--- a/lib/drmtest.c
+++ b/lib/drmtest.c
@@ -574,22 +574,24 @@ bool drmtest_only_list_subtests(void)
 	return list_subtests;
 }
 
+static bool env_set(const char *env_var)
+{
+	char *val;
+
+	val = getenv(env_var);
+	if (!val)
+		return false;
+
+	return atoi(val) != 0;
+}
+
 bool drmtest_run_quick(void)
 {
 	static int run_quick = -1;
 
-	if (run_quick == -1) {
-		char *igt_quick;
+	if (run_quick == -1)
+		run_quick = env_set("IGT_QUICK");
 
-		igt_quick = getenv("IGT_QUICK");
-		if (!igt_quick) {
-			run_quick = 0;
-			goto out;
-		}
-
-		run_quick = atoi(igt_quick);
-	}
-out:
 	return run_quick;
 }
 
-- 
1.7.7.5

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-02-20 14:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-20 14:53 [PATCH 1/4] lib: Factor out a function to check if an environment variable is set Damien Lespiau
2013-02-20 14:53 ` [PATCH 2/4] lib: Allow to override the device id at run time Damien Lespiau
2013-02-20 14:53 ` [PATCH 3/4] rendercopy: Add a way to dump an .aub file with the rendercopy bos Damien Lespiau
2013-02-20 14:53 ` [PATCH 4/4] build: Guard the inclusions of config.h with HAVE_CONFIG_H Damien Lespiau

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox