aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2011-10-18 21:41:50 +0200
committerChad Versace <chad@chad-versace.us>2011-10-18 14:21:48 -0700
commitf8bc9123f0a8d0b14420ff101fa404fa18a480d9 (patch)
treef95bee4b03efc031a65e090c90dcb8c10fd54a92
parent9d9f327dc588fac43ec3f6e58680b6bf1b283ca0 (diff)
Fix redundant shebangs and executable bits.
I think that no Python file in framework/ or tests/ should have shebang, and tests/shaders/gen_equal_tests.py shouldn't have the executable bit set. chad: I modified Matěj's patch to retain the shebang for glsl_parser_test.py. That file can be ran as a standalone script. Signed-off-by: Chad Versace <chad@chad-versace.us> Signed-off-by: Matěj Cepl <mcepl@redhat.com>
-rw-r--r--framework/__init__.py1
-rw-r--r--framework/core.py1
-rw-r--r--framework/exectest.py1
-rw-r--r--framework/gleantest.py1
-rw-r--r--framework/summary.py1
-rw-r--r--tests/all.tests1
-rw-r--r--tests/external-glslparser.tests1
-rw-r--r--tests/gtf.tests1
-rw-r--r--tests/quick-driver.tests1
-rw-r--r--tests/quick.tests1
-rw-r--r--tests/r300.tests1
-rw-r--r--tests/r500.tests1
-rw-r--r--tests/r600.tests1
-rw-r--r--tests/sanity.tests1
-rw-r--r--[-rwxr-xr-x]tests/shaders/gen_equal_tests.py0
15 files changed, 0 insertions, 14 deletions
diff --git a/framework/__init__.py b/framework/__init__.py
index 00691e28..3cf6d82d 100644
--- a/framework/__init__.py
+++ b/framework/__init__.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/framework/core.py b/framework/core.py
index e6d9b4d6..0bef48d7 100644
--- a/framework/core.py
+++ b/framework/core.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/framework/exectest.py b/framework/exectest.py
index 5821071c..d783fa57 100644
--- a/framework/exectest.py
+++ b/framework/exectest.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/framework/gleantest.py b/framework/gleantest.py
index fe7c3b72..0bab36a0 100644
--- a/framework/gleantest.py
+++ b/framework/gleantest.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/framework/summary.py b/framework/summary.py
index cac02547..c97ae9f9 100644
--- a/framework/summary.py
+++ b/framework/summary.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/all.tests b/tests/all.tests
index ec66867c..55f08e0c 100644
--- a/tests/all.tests
+++ b/tests/all.tests
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# -*- coding: utf-8 -*-
# All tests that come with piglit, using default settings
diff --git a/tests/external-glslparser.tests b/tests/external-glslparser.tests
index 087807e0..4e50173c 100644
--- a/tests/external-glslparser.tests
+++ b/tests/external-glslparser.tests
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# -*- coding: utf-8 -*-
# All tests that come with piglit, using default settings
diff --git a/tests/gtf.tests b/tests/gtf.tests
index a459a9c4..cade81a7 100644
--- a/tests/gtf.tests
+++ b/tests/gtf.tests
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/quick-driver.tests b/tests/quick-driver.tests
index adfa89d0..73bee46d 100644
--- a/tests/quick-driver.tests
+++ b/tests/quick-driver.tests
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os.path
diff --git a/tests/quick.tests b/tests/quick.tests
index 702a69f8..43eae7df 100644
--- a/tests/quick.tests
+++ b/tests/quick.tests
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Testing drivers for Radeon hardware
diff --git a/tests/r300.tests b/tests/r300.tests
index 7b404604..8dfeccbe 100644
--- a/tests/r300.tests
+++ b/tests/r300.tests
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
#
# Testing the r300 DRI driver
#
diff --git a/tests/r500.tests b/tests/r500.tests
index 7276ac26..0ea98426 100644
--- a/tests/r500.tests
+++ b/tests/r500.tests
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
#
# Testing the r500 DRI driver
#
diff --git a/tests/r600.tests b/tests/r600.tests
index fe7426f7..7d880f08 100644
--- a/tests/r600.tests
+++ b/tests/r600.tests
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
import os.path
diff --git a/tests/sanity.tests b/tests/sanity.tests
index bcab6067..035cfb9f 100644
--- a/tests/sanity.tests
+++ b/tests/sanity.tests
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
#
# Minimal tests to check whether the installation is working
#
diff --git a/tests/shaders/gen_equal_tests.py b/tests/shaders/gen_equal_tests.py
index af466749..af466749 100755..100644
--- a/tests/shaders/gen_equal_tests.py
+++ b/tests/shaders/gen_equal_tests.py