From 3200e708582f75b3566a85228de9a698edbfb022 Mon Sep 17 00:00:00 2001 From: José Fonseca Date: Wed, 31 Mar 2010 20:05:10 +0100 Subject: 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(-) (limited to 'progs/gallium') diff --git a/progs/gallium/python/tests/texture_blit.py b/progs/gallium/python/tests/texture_blit.py index a2e62c89ee..5ae0a7398d 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()) -- cgit v1.2.3