Skip to content

Commit 0a0c352

Browse files
committed
tests: add missing license block on project python and node tests
Signed-off-by: Mihai Tudor Panu <[email protected]>
1 parent 89d5de4 commit 0a0c352

9 files changed

+83
-0
lines changed

tests/check_autoloadlibrary.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
#!/usr/bin/python
2+
#
3+
# Copyright (c) 2017-2019 Intel Corporation
4+
#
5+
# This program and the accompanying materials are made available under the
6+
# terms of the The MIT License which is available at
7+
# https://opensource.org/licenses/MIT.
8+
#
9+
# SPDX-License-Identifier: MIT
10+
#
211
from __future__ import print_function
312

413
import unittest as u

tests/check_clean.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
#!/usr/bin/python
2+
#
3+
# Copyright (c) 2017-2019 Intel Corporation
4+
#
5+
# This program and the accompanying materials are made available under the
6+
# terms of the The MIT License which is available at
7+
# https://opensource.org/licenses/MIT.
8+
#
9+
# SPDX-License-Identifier: MIT
10+
#
211

312
import unittest as u
413
import re, fnmatch, os

tests/check_consistency.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
#!/usr/bin/python
2+
#
3+
# Copyright (c) 2017-2019 Intel Corporation
4+
#
5+
# This program and the accompanying materials are made available under the
6+
# terms of the The MIT License which is available at
7+
# https://opensource.org/licenses/MIT.
8+
#
9+
# SPDX-License-Identifier: MIT
10+
#
211

312
import unittest as u
413
import re, fnmatch, os

tests/check_duplicate_headers.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
#!/usr/bin/python
2+
#
3+
# Copyright (c) 2017-2019 Intel Corporation
4+
#
5+
# This program and the accompanying materials are made available under the
6+
# terms of the The MIT License which is available at
7+
# https://opensource.org/licenses/MIT.
8+
#
9+
# SPDX-License-Identifier: MIT
10+
#
211

312
import unittest
413
import os

tests/check_examplenames.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
#!/usr/bin/python
2+
#
3+
# Copyright (c) 2017-2019 Intel Corporation
4+
#
5+
# This program and the accompanying materials are made available under the
6+
# terms of the The MIT License which is available at
7+
# https://opensource.org/licenses/MIT.
8+
#
9+
# SPDX-License-Identifier: MIT
10+
#
211
import unittest
312
import re, fnmatch, os, sys
413

tests/check_file_encoding.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
#!/usr/bin/python
2+
#
3+
# Copyright (c) 2017-2019 Intel Corporation
4+
#
5+
# This program and the accompanying materials are made available under the
6+
# terms of the The MIT License which is available at
7+
# https://opensource.org/licenses/MIT.
8+
#
9+
# SPDX-License-Identifier: MIT
10+
#
211

312
import unittest
413
import os

tests/check_pythonload.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
#!/usr/bin/python
2+
#
3+
# Copyright (c) 2017-2019 Intel Corporation
4+
#
5+
# This program and the accompanying materials are made available under the
6+
# terms of the The MIT License which is available at
7+
# https://opensource.org/licenses/MIT.
8+
#
9+
# SPDX-License-Identifier: MIT
10+
#
211
import unittest
312
import imp
413
import glob

tests/node/jsonlint.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/********************************************************************************
2+
* Copyright (c) 2017-2019 Intel Corporation
3+
*
4+
* This program and the accompanying materials are made available under the
5+
* terms of the The MIT License which is available at
6+
* https://opensource.org/licenses/MIT.
7+
*
8+
* SPDX-License-Identifier: MIT
9+
********************************************************************************/
10+
111
var shell = require('shelljs');
212
var path = require('path');
313

tests/node/test.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/********************************************************************************
2+
* Copyright (c) 2017-2019 Intel Corporation
3+
*
4+
* This program and the accompanying materials are made available under the
5+
* terms of the The MIT License which is available at
6+
* https://opensource.org/licenses/MIT.
7+
*
8+
* SPDX-License-Identifier: MIT
9+
********************************************************************************/
10+
111
var shell = require('shelljs');
212
var path = require('path');
313
var expect = require('chai').expect;

0 commit comments

Comments
 (0)