From 3200e708582f75b3566a85228de9a698edbfb022 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Wed, 31 Mar 2010 20:05:10 +0100 Subject: [PATCH] python/tests: Read the number of tests to execute from command line. --- progs/gallium/python/tests/texture_blit.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/progs/gallium/python/tests/texture_blit.py b/progs/gallium/python/tests/texture_blit.py index a2e62c8..5ae0a73 100755 --- a/progs/gallium/python/tests/texture_blit.py +++ b/progs/gallium/python/tests/texture_blit.py @@ -579,7 +579,10 @@ def main(): ctx = dev.context_create() - n = 10000 + try: + n = int(sys.argv[1]) + except: + n = 10000 for i in range(n): format = random.choice(formats.keys()) -- 2.7.4