summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2018-05-25 16:37:09 -0700
committerGitHub <noreply@github.com>2018-05-25 16:37:09 -0700
commita8104784ffad6cac4389bba67c59db3e29fb235b (patch)
tree56348da36008b086cea4310f49be9b98c15bd817
parent1b691e57f6377d3816bd213d4d16341773b82cb5 (diff)
downloadbinaryen-a8104784ffad6cac4389bba67c59db3e29fb235b.tar.gz
binaryen-a8104784ffad6cac4389bba67c59db3e29fb235b.tar.bz2
binaryen-a8104784ffad6cac4389bba67c59db3e29fb235b.zip
Cleanup scripts in scripts/test (#1566)
Remove executable bit and #! from scripts that don't have entry point. Add missing licence test. Move arg parsing into a function. Remove legacy --only_prepare (with underscrore) argument.
-rwxr-xr-xauto_update_tests.py1
-rwxr-xr-xcheck.py1
-rwxr-xr-xscripts/__init__.py22
-rwxr-xr-xscripts/clean_c_api_trace.py16
-rwxr-xr-xscripts/fuzz_passes.py24
-rwxr-xr-xscripts/fuzz_passes_wast.py24
-rwxr-xr-xscripts/fuzz_relooper.py24
-rw-r--r--scripts/spidermonkify.py24
-rwxr-xr-xscripts/storage.py24
-rw-r--r--[-rwxr-xr-x]scripts/test/__init__.py22
-rwxr-xr-xscripts/test/asm2wasm.py2
-rwxr-xr-xscripts/test/generate_lld_tests.py2
-rwxr-xr-xscripts/test/lld.py1
-rwxr-xr-xscripts/test/s2wasm.py2
-rw-r--r--scripts/test/shared.py155
-rw-r--r--[-rwxr-xr-x]scripts/test/support.py22
-rwxr-xr-xscripts/test/wasm2asm.py16
-rwxr-xr-xtest/__init__.py24
-rwxr-xr-xtest/llvm_autogenerated/llvm-to-s.py14
19 files changed, 236 insertions, 184 deletions
diff --git a/auto_update_tests.py b/auto_update_tests.py
index 50e9c73b9..173689ec4 100755
--- a/auto_update_tests.py
+++ b/auto_update_tests.py
@@ -1,4 +1,5 @@
#!/usr/bin/env python
+#
# Copyright 2015 WebAssembly Community Group participants
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/check.py b/check.py
index 9102536bc..f3f35524e 100755
--- a/check.py
+++ b/check.py
@@ -1,4 +1,5 @@
#!/usr/bin/env python2
+#
# Copyright 2015 WebAssembly Community Group participants
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/scripts/__init__.py b/scripts/__init__.py
index 8db5bb0bf..9368ee645 100755
--- a/scripts/__init__.py
+++ b/scripts/__init__.py
@@ -1,17 +1,15 @@
-#! /usr/bin/env python
-
-# Copyright 2015 WebAssembly Community Group participants
+# Copyright 2015 WebAssembly Community Group participants
#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
#
-# http://www.apache.org/licenses/LICENSE-2.0
+# http://www.apache.org/licenses/LICENSE-2.0
#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
# Empty __init__.py file: Python treats the directory as containing a package.
diff --git a/scripts/clean_c_api_trace.py b/scripts/clean_c_api_trace.py
index efe8baa43..1f8062f2d 100755
--- a/scripts/clean_c_api_trace.py
+++ b/scripts/clean_c_api_trace.py
@@ -1,4 +1,18 @@
-#! /usr/bin/env python
+#!/usr/bin/env python
+#
+# Copyright 2016 WebAssembly Community Group participants
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
'''
Cleans up output from the C api, makes a runnable C file
diff --git a/scripts/fuzz_passes.py b/scripts/fuzz_passes.py
index 42a083b11..04899835e 100755
--- a/scripts/fuzz_passes.py
+++ b/scripts/fuzz_passes.py
@@ -1,18 +1,18 @@
-#! /usr/bin/env python
-
-# Copyright 2016 WebAssembly Community Group participants
+#!/usr/bin/env python
+#
+# Copyright 2016 WebAssembly Community Group participants
#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
#
-# http://www.apache.org/licenses/LICENSE-2.0
+# http://www.apache.org/licenses/LICENSE-2.0
#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
'''
This fuzzes passes, by starting with a working program, then running
diff --git a/scripts/fuzz_passes_wast.py b/scripts/fuzz_passes_wast.py
index 2f2022dd9..052969f01 100755
--- a/scripts/fuzz_passes_wast.py
+++ b/scripts/fuzz_passes_wast.py
@@ -1,18 +1,18 @@
-#! /usr/bin/env python
-
-# Copyright 2016 WebAssembly Community Group participants
+#!/usr/bin/env python
+#
+# Copyright 2016 WebAssembly Community Group participants
#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
#
-# http://www.apache.org/licenses/LICENSE-2.0
+# http://www.apache.org/licenses/LICENSE-2.0
#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
'''
This fuzzes passes, by starting with a wast, then running
diff --git a/scripts/fuzz_relooper.py b/scripts/fuzz_relooper.py
index 16a441936..bf8867571 100755
--- a/scripts/fuzz_relooper.py
+++ b/scripts/fuzz_relooper.py
@@ -1,18 +1,18 @@
-#! /usr/bin/env python
-
-# Copyright 2016 WebAssembly Community Group participants
+#!/usr/bin/env python
+#
+# Copyright 2016 WebAssembly Community Group participants
#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
#
-# http://www.apache.org/licenses/LICENSE-2.0
+# http://www.apache.org/licenses/LICENSE-2.0
#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
'''
This fuzzes the relooper using the C API.
diff --git a/scripts/spidermonkify.py b/scripts/spidermonkify.py
index 69ad437f1..e5caaf0a8 100644
--- a/scripts/spidermonkify.py
+++ b/scripts/spidermonkify.py
@@ -1,18 +1,18 @@
-#! /usr/bin/env python
-
-# Copyright 2016 WebAssembly Community Group participants
+#!/usr/bin/env python
+#
+# 2016 WebAssembly Community Group participants
#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
#
-# http://www.apache.org/licenses/LICENSE-2.0
+# http://www.apache.org/licenses/LICENSE-2.0
#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
'''
A bunch of hackish fixups for testing of SpiderMonkey support. We should
diff --git a/scripts/storage.py b/scripts/storage.py
index 771d145d8..9dad45e54 100755
--- a/scripts/storage.py
+++ b/scripts/storage.py
@@ -1,18 +1,18 @@
-#! /usr/bin/env python
-
-# Copyright 2016 WebAssembly Community Group participants
+#!/usr/bin/env python
+#
+# Copyright 2016 WebAssembly Community Group participants
#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
#
-# http://www.apache.org/licenses/LICENSE-2.0
+# http://www.apache.org/licenses/LICENSE-2.0
#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
import glob
import json
diff --git a/scripts/test/__init__.py b/scripts/test/__init__.py
index 8db5bb0bf..9368ee645 100755..100644
--- a/scripts/test/__init__.py
+++ b/scripts/test/__init__.py
@@ -1,17 +1,15 @@
-#! /usr/bin/env python
-
-# Copyright 2015 WebAssembly Community Group participants
+# Copyright 2015 WebAssembly Community Group participants
#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
#
-# http://www.apache.org/licenses/LICENSE-2.0
+# http://www.apache.org/licenses/LICENSE-2.0
#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
# Empty __init__.py file: Python treats the directory as containing a package.
diff --git a/scripts/test/asm2wasm.py b/scripts/test/asm2wasm.py
index 3fb94fd1d..63ed79ce6 100755
--- a/scripts/test/asm2wasm.py
+++ b/scripts/test/asm2wasm.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-
+#
# Copyright 2017 WebAssembly Community Group participants
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/scripts/test/generate_lld_tests.py b/scripts/test/generate_lld_tests.py
index 1d774cc09..4b18107e1 100755
--- a/scripts/test/generate_lld_tests.py
+++ b/scripts/test/generate_lld_tests.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-
+#
# Copyright 2017 WebAssembly Community Group participants
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/scripts/test/lld.py b/scripts/test/lld.py
index 01ed51a4a..4f976ae30 100755
--- a/scripts/test/lld.py
+++ b/scripts/test/lld.py
@@ -1,5 +1,4 @@
#!/usr/bin/env python
-
# Copyright 2017 WebAssembly Community Group participants
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/scripts/test/s2wasm.py b/scripts/test/s2wasm.py
index 0e0bec621..ed97668e6 100755
--- a/scripts/test/s2wasm.py
+++ b/scripts/test/s2wasm.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-
+#
# Copyright 2016 WebAssembly Community Group participants
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/scripts/test/shared.py b/scripts/test/shared.py
index 9921d0ada..6fd18c814 100644
--- a/scripts/test/shared.py
+++ b/scripts/test/shared.py
@@ -1,3 +1,17 @@
+# Copyright 2015 WebAssembly Community Group participants
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
import argparse
import difflib
import glob
@@ -8,76 +22,77 @@ import sys
import urllib2
-usage_str = ("usage: 'python check.py [options]'\n\n"
- "Runs the Binaryen test suite.")
-parser = argparse.ArgumentParser(description=usage_str)
-parser.add_argument(
- '--torture', dest='torture', action='store_true', default=True,
- help='Chooses whether to run the torture testcases. Default: true.')
-parser.add_argument(
- '--no-torture', dest='torture', action='store_false',
- help='Disables running the torture testcases.')
-parser.add_argument(
- '--only-prepare', dest='only_prepare', action='store_true', default=False,
- help='If enabled, only fetches the waterfall build. Default: false.')
-parser.add_argument(
- # Backwards compatibility
- '--only_prepare', dest='only_prepare', action='store_true', default=False,
- help='If enabled, only fetches the waterfall build. Default: false.')
-parser.add_argument(
- '--test-waterfall', dest='test_waterfall', action='store_true',
- default=False,
- help=('If enabled, fetches and tests the LLVM waterfall builds.'
- ' Default: false.'))
-parser.add_argument(
- '--no-test-waterfall', dest='test_waterfall', action='store_false',
- help='Disables downloading and testing of the LLVM waterfall builds.')
-parser.add_argument(
- '--abort-on-first-failure', dest='abort_on_first_failure',
- action='store_true', default=True,
- help=('Specifies whether to halt test suite execution on first test error.'
- ' Default: true.'))
-parser.add_argument(
- '--no-abort-on-first-failure', dest='abort_on_first_failure',
- action='store_false',
- help=('If set, the whole test suite will run to completion independent of'
- ' earlier errors.'))
-parser.add_argument(
- '--run-gcc-tests', dest='run_gcc_tests', action='store_true', default=True,
- help=('Chooses whether to run the tests that require building with native'
- ' GCC. Default: true.'))
-parser.add_argument(
- '--no-run-gcc-tests', dest='run_gcc_tests', action='store_false',
- help='If set, disables the native GCC tests.')
-
-parser.add_argument(
- '--interpreter', dest='interpreter', default='',
- help='Specifies the wasm interpreter executable to run tests on.')
-parser.add_argument(
- '--binaryen-bin', dest='binaryen_bin', default='',
- help=('Specifies a path to where the built Binaryen executables reside at.'
- ' Default: bin/ of current directory (i.e. assume an in-tree build).'
- ' If not specified, the environment variable BINARYEN_ROOT= can also'
- ' be used to adjust this.'))
-parser.add_argument(
- '--binaryen-root', dest='binaryen_root', default='',
- help=('Specifies a path to the root of the Binaryen repository tree.'
- ' Default: the directory where this file check.py resides.'))
-parser.add_argument(
- '--valgrind', dest='valgrind', default='',
- help=('Specifies a path to Valgrind tool, which will be used to validate'
- ' execution if specified. (Pass --valgrind=valgrind to search in'
- ' PATH)'))
-parser.add_argument(
- '--valgrind-full-leak-check', dest='valgrind_full_leak_check',
- action='store_true', default=False,
- help=('If specified, all unfreed (but still referenced) pointers at the'
- ' end of execution are considered memory leaks. Default: disabled.'))
-
-parser.add_argument(
- 'positional_args', metavar='tests', nargs=argparse.REMAINDER,
- help='Names specific tests to run.')
-options = parser.parse_args()
+def parse_args(args):
+ usage_str = ("usage: 'python check.py [options]'\n\n"
+ "Runs the Binaryen test suite.")
+ parser = argparse.ArgumentParser(description=usage_str)
+ parser.add_argument(
+ '--torture', dest='torture', action='store_true', default=True,
+ help='Chooses whether to run the torture testcases. Default: true.')
+ parser.add_argument(
+ '--no-torture', dest='torture', action='store_false',
+ help='Disables running the torture testcases.')
+ parser.add_argument(
+ '--only-prepare', dest='only_prepare', action='store_true', default=False,
+ help='If enabled, only fetches the waterfall build. Default: false.')
+ parser.add_argument(
+ '--test-waterfall', dest='test_waterfall', action='store_true',
+ default=False,
+ help=('If enabled, fetches and tests the LLVM waterfall builds.'
+ ' Default: false.'))
+ parser.add_argument(
+ '--no-test-waterfall', dest='test_waterfall', action='store_false',
+ help='Disables downloading and testing of the LLVM waterfall builds.')
+ parser.add_argument(
+ '--abort-on-first-failure', dest='abort_on_first_failure',
+ action='store_true', default=True,
+ help=('Specifies whether to halt test suite execution on first test error.'
+ ' Default: true.'))
+ parser.add_argument(
+ '--no-abort-on-first-failure', dest='abort_on_first_failure',
+ action='store_false',
+ help=('If set, the whole test suite will run to completion independent of'
+ ' earlier errors.'))
+ parser.add_argument(
+ '--run-gcc-tests', dest='run_gcc_tests', action='store_true', default=True,
+ help=('Chooses whether to run the tests that require building with native'
+ ' GCC. Default: true.'))
+ parser.add_argument(
+ '--no-run-gcc-tests', dest='run_gcc_tests', action='store_false',
+ help='If set, disables the native GCC tests.')
+
+ parser.add_argument(
+ '--interpreter', dest='interpreter', default='',
+ help='Specifies the wasm interpreter executable to run tests on.')
+ parser.add_argument(
+ '--binaryen-bin', dest='binaryen_bin', default='',
+ help=('Specifies a path to where the built Binaryen executables reside at.'
+ ' Default: bin/ of current directory (i.e. assume an in-tree build).'
+ ' If not specified, the environment variable BINARYEN_ROOT= can also'
+ ' be used to adjust this.'))
+ parser.add_argument(
+ '--binaryen-root', dest='binaryen_root', default='',
+ help=('Specifies a path to the root of the Binaryen repository tree.'
+ ' Default: the directory where this file check.py resides.'))
+ parser.add_argument(
+ '--valgrind', dest='valgrind', default='',
+ help=('Specifies a path to Valgrind tool, which will be used to validate'
+ ' execution if specified. (Pass --valgrind=valgrind to search in'
+ ' PATH)'))
+ parser.add_argument(
+ '--valgrind-full-leak-check', dest='valgrind_full_leak_check',
+ action='store_true', default=False,
+ help=('If specified, all unfreed (but still referenced) pointers at the'
+ ' end of execution are considered memory leaks. Default: disabled.'))
+
+ parser.add_argument(
+ 'positional_args', metavar='tests', nargs=argparse.REMAINDER,
+ help='Names specific tests to run.')
+
+ return parser.parse_args(args)
+
+
+options = parse_args(sys.argv[1:])
requested = options.positional_args
num_failures = 0
diff --git a/scripts/test/support.py b/scripts/test/support.py
index 02d2bbfef..23a91df59 100755..100644
--- a/scripts/test/support.py
+++ b/scripts/test/support.py
@@ -1,18 +1,16 @@
-#! /usr/bin/env python
-
-# Copyright 2016 WebAssembly Community Group participants
+# Copyright 2016 WebAssembly Community Group participants
#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
#
-# http://www.apache.org/licenses/LICENSE-2.0
+# http://www.apache.org/licenses/LICENSE-2.0
#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
import filecmp
import os
diff --git a/scripts/test/wasm2asm.py b/scripts/test/wasm2asm.py
index d186cff4c..41fdaf9b7 100755
--- a/scripts/test/wasm2asm.py
+++ b/scripts/test/wasm2asm.py
@@ -1,4 +1,18 @@
-#!/usr/bin/env python2
+#!/usr/bin/env python
+#
+# Copyright 2016 WebAssembly Community Group participants
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
import os
diff --git a/test/__init__.py b/test/__init__.py
index 8db5bb0bf..093557f25 100755
--- a/test/__init__.py
+++ b/test/__init__.py
@@ -1,17 +1,17 @@
-#! /usr/bin/env python
-
-# Copyright 2015 WebAssembly Community Group participants
+#!/usr/bin/env python
+#
+# Copyright 2015 WebAssembly Community Group participants
#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
#
-# http://www.apache.org/licenses/LICENSE-2.0
+# http://www.apache.org/licenses/LICENSE-2.0
#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
# Empty __init__.py file: Python treats the directory as containing a package.
diff --git a/test/llvm_autogenerated/llvm-to-s.py b/test/llvm_autogenerated/llvm-to-s.py
index 8fb04aad0..cbd6fec5b 100755
--- a/test/llvm_autogenerated/llvm-to-s.py
+++ b/test/llvm_autogenerated/llvm-to-s.py
@@ -1,4 +1,18 @@
#!/usr/bin/env python
+#
+# 2016 WebAssembly Community Group participants
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
import argparse
import os