[Piglit] [PATCH 04/34] gen_constant_array_size_tests.py: use __future__ functions

Vinson Lee vlee at freedesktop.org
Sat Feb 21 01:15:23 PST 2015


On Fri, Feb 20, 2015 at 6:17 PM, Dylan Baker <baker.dylan.c at gmail.com> wrote:
> Signed-off-by: Dylan Baker <dylanx.c.baker at intel.com>
> ---
>  generated_tests/gen_constant_array_size_tests.py | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/generated_tests/gen_constant_array_size_tests.py b/generated_tests/gen_constant_array_size_tests.py
> index c6f75ab..f8ee394 100644
> --- a/generated_tests/gen_constant_array_size_tests.py
> +++ b/generated_tests/gen_constant_array_size_tests.py
> @@ -34,6 +34,7 @@
>  # With the optional argument --names-only, it only outputs the names
>  # of the files; it doesn't generate them.
>
> +from __future__ import print_function
>  from builtin_function import *
>  import abc
>  import optparse
> @@ -265,7 +266,7 @@ def main():
>      for test in all_tests():
>          if not options.names_only:
>              test.generate_parser_test()
> -        print test.filename()
> +        print(test.filename())
>
>
>  if __name__ == '__main__':
> --
> 2.3.0
>
> _______________________________________________
> Piglit mailing list
> Piglit at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/piglit

Reviewed-by: Vinson Lee <vlee at freedesktop.org>


More information about the Piglit mailing list