[Piglit] [PATCH 04/34] gen_constant_array_size_tests.py: use __future__ functions
Dylan Baker
baker.dylan.c at gmail.com
Fri Feb 20 18:17:51 PST 2015
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
More information about the Piglit
mailing list