summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rwxr-xr-xtest/run-d8.py15
-rwxr-xr-xtest/run-tests.py18
-rw-r--r--test/spec.js16
-rw-r--r--test/wasm.js16
4 files changed, 62 insertions, 3 deletions
diff --git a/test/run-d8.py b/test/run-d8.py
index cf3a2827..738e7e84 100755
--- a/test/run-d8.py
+++ b/test/run-d8.py
@@ -1,4 +1,19 @@
#!/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 argparse
import os
diff --git a/test/run-tests.py b/test/run-tests.py
index 64bae20f..543c0806 100755
--- a/test/run-tests.py
+++ b/test/run-tests.py
@@ -1,7 +1,19 @@
#!/usr/bin/env python
-# Copyright 2015 The Native Client Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
+#
+# 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 argparse
import difflib
diff --git a/test/spec.js b/test/spec.js
index 8accb5cb..210ece7a 100644
--- a/test/spec.js
+++ b/test/spec.js
@@ -1,3 +1,19 @@
+/*
+ * 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.
+ */
+
var quiet; /* global, defined by output from sexpr-wasm */
var passed = 0;
var failed = 0;
diff --git a/test/wasm.js b/test/wasm.js
index eaec352b..ba6232a2 100644
--- a/test/wasm.js
+++ b/test/wasm.js
@@ -1,3 +1,19 @@
+/*
+ * 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.
+ */
+
if (arguments.length != 1) {
print('usage: d8 wasm.js -- <filename>');
quit(0);