summaryrefslogtreecommitdiffstats
path: root/test/ninja
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2021-03-28 04:10:10 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2021-04-13 20:56:50 (GMT)
commit0d77bc29cb1a31edcb89c5f2fc1c9a717c619521 (patch)
tree1641581987aa3d79ba194676134f5dc6733a22f9 /test/ninja
parent5972f959fc82802bc0109de361c01ee164da9876 (diff)
downloadSCons-0d77bc29cb1a31edcb89c5f2fc1c9a717c619521.zip
SCons-0d77bc29cb1a31edcb89c5f2fc1c9a717c619521.tar.gz
SCons-0d77bc29cb1a31edcb89c5f2fc1c9a717c619521.tar.bz2
address sider issues. Also update copyright text to current version
Diffstat (limited to 'test/ninja')
-rw-r--r--test/ninja/build_libraries.py3
-rw-r--r--test/ninja/copy_function_command.py4
-rw-r--r--test/ninja/generate_source.py4
-rw-r--r--test/ninja/iterative_speedup.py4
-rw-r--r--test/ninja/multi_env.py4
-rw-r--r--test/ninja/ninja_test_sconscripts/sconstruct_generate_and_build.py1
-rw-r--r--test/ninja/ninja_test_sconscripts/sconstruct_generate_and_build_cxx.py2
-rw-r--r--test/ninja/shell_command.py4
8 files changed, 9 insertions, 17 deletions
diff --git a/test/ninja/build_libraries.py b/test/ninja/build_libraries.py
index b3c7b54..d1e7c13 100644
--- a/test/ninja/build_libraries.py
+++ b/test/ninja/build_libraries.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# __COPYRIGHT__
+# Copyright The SCons Foundation
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
@@ -22,7 +22,6 @@
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
-__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import os
import TestSCons
diff --git a/test/ninja/copy_function_command.py b/test/ninja/copy_function_command.py
index 8e7acff..08e8274 100644
--- a/test/ninja/copy_function_command.py
+++ b/test/ninja/copy_function_command.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# __COPYRIGHT__
+# Copyright The SCons Foundation
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
@@ -22,8 +22,6 @@
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
-__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
-
import os
import TestSCons
from TestCmd import IS_WINDOWS
diff --git a/test/ninja/generate_source.py b/test/ninja/generate_source.py
index 76c79bb..141b19c 100644
--- a/test/ninja/generate_source.py
+++ b/test/ninja/generate_source.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# __COPYRIGHT__
+# Copyright The SCons Foundation
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
@@ -22,8 +22,6 @@
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
-__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
-
import os
import TestSCons
from TestCmd import IS_WINDOWS
diff --git a/test/ninja/iterative_speedup.py b/test/ninja/iterative_speedup.py
index ff50f50..5fd4bc5 100644
--- a/test/ninja/iterative_speedup.py
+++ b/test/ninja/iterative_speedup.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# __COPYRIGHT__
+# Copyright The SCons Foundation
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
@@ -22,8 +22,6 @@
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
-__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
-
import os
import time
import random
diff --git a/test/ninja/multi_env.py b/test/ninja/multi_env.py
index 18ca3cb..53ec83b 100644
--- a/test/ninja/multi_env.py
+++ b/test/ninja/multi_env.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# __COPYRIGHT__
+# Copyright The SCons Foundation
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
@@ -22,8 +22,6 @@
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
-__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
-
import os
import TestSCons
from TestCmd import IS_WINDOWS
diff --git a/test/ninja/ninja_test_sconscripts/sconstruct_generate_and_build.py b/test/ninja/ninja_test_sconscripts/sconstruct_generate_and_build.py
index 242eb76..4123fd8 100644
--- a/test/ninja/ninja_test_sconscripts/sconstruct_generate_and_build.py
+++ b/test/ninja/ninja_test_sconscripts/sconstruct_generate_and_build.py
@@ -1,3 +1,4 @@
+# noqa: f821
DefaultEnvironment(tools=[])
env = Environment()
diff --git a/test/ninja/ninja_test_sconscripts/sconstruct_generate_and_build_cxx.py b/test/ninja/ninja_test_sconscripts/sconstruct_generate_and_build_cxx.py
index 51ca6c3..ab304fa 100644
--- a/test/ninja/ninja_test_sconscripts/sconstruct_generate_and_build_cxx.py
+++ b/test/ninja/ninja_test_sconscripts/sconstruct_generate_and_build_cxx.py
@@ -1,3 +1,5 @@
+# noqa: f821
+
DefaultEnvironment(tools=[])
env = Environment()
env.Tool('ninja')
diff --git a/test/ninja/shell_command.py b/test/ninja/shell_command.py
index 5d7f97e..f477505 100644
--- a/test/ninja/shell_command.py
+++ b/test/ninja/shell_command.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# __COPYRIGHT__
+# Copyright The SCons Foundation
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
@@ -22,8 +22,6 @@
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
-__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
-
import os
import TestSCons
from TestCmd import IS_WINDOWS