From 48820ed8da0ad50d51a58f26e156d82b685492e2 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Fri, 17 Aug 2018 11:41:25 +0100 Subject: [PATCH] glsl: remove execute bit and shebang from python tests Just like the rest of the tree - these should be run either as part of the build system check target, or at the very least with an explicitly versioned python executable. Fixes: db8cd8e3677 ("glcpp/tests: Convert shell scripts to a python script") Fixes: 97c28cb0823 ("glsl/tests: Convert optimization-test.sh to pure python") Fixes: 3b52d292273 ("glsl/tests: reimplement warnings-test in python") Signed-off-by: Emil Velikov Reviewed-by: Dylan Baker Reviewed-by: Eric Engestrom --- src/compiler/glsl/glcpp/tests/glcpp_test.py | 1 - src/compiler/glsl/tests/optimization_test.py | 1 - src/compiler/glsl/tests/warnings_test.py | 1 - 3 files changed, 3 deletions(-) mode change 100755 => 100644 src/compiler/glsl/glcpp/tests/glcpp_test.py mode change 100755 => 100644 src/compiler/glsl/tests/optimization_test.py mode change 100755 => 100644 src/compiler/glsl/tests/warnings_test.py diff --git a/src/compiler/glsl/glcpp/tests/glcpp_test.py b/src/compiler/glsl/glcpp/tests/glcpp_test.py old mode 100755 new mode 100644 index 1481eed6188..b024300522f --- a/src/compiler/glsl/glcpp/tests/glcpp_test.py +++ b/src/compiler/glsl/glcpp/tests/glcpp_test.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python2 # encoding=utf-8 # Copyright © 2018 Intel Corporation diff --git a/src/compiler/glsl/tests/optimization_test.py b/src/compiler/glsl/tests/optimization_test.py old mode 100755 new mode 100644 index b3147ed08fc..15ca3216f40 --- a/src/compiler/glsl/tests/optimization_test.py +++ b/src/compiler/glsl/tests/optimization_test.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # encoding=utf-8 # Copyright © 2018 Intel Corporation diff --git a/src/compiler/glsl/tests/warnings_test.py b/src/compiler/glsl/tests/warnings_test.py old mode 100755 new mode 100644 index 2e0f23180f3..2c4fa5a0d5a --- a/src/compiler/glsl/tests/warnings_test.py +++ b/src/compiler/glsl/tests/warnings_test.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # encoding=utf-8 # Copyright © 2017 Intel Corporation -- 2.30.2