summaryrefslogtreecommitdiff
path: root/test/Configure
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2022-10-22 10:49:23 -0600
committerMats Wichmann <mats@linux.com>2022-10-22 10:49:23 -0600
commit31dd7e91b4b5a0b303e975c0380fdbc313c2429c (patch)
tree1dbeb40368d4b0cc93f7ed5bf6cddea3d09dceae /test/Configure
parentff86dc857d9caa9c5ebb85f2fe37a1124c32eca5 (diff)
downloadscons-git-31dd7e91b4b5a0b303e975c0380fdbc313c2429c.tar.gz
Small cleanup in BoolVariable [skip appveyor]
For consistency, have BoolVariable usage use True and False instead of 0 and 1 - mainly this is tests and doc examples. Reformatted a few embedded test files. Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'test/Configure')
-rw-r--r--test/Configure/issue-3469/fixture/SConstruct6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/Configure/issue-3469/fixture/SConstruct b/test/Configure/issue-3469/fixture/SConstruct
index 4b5bedce9..ae1fb30a0 100644
--- a/test/Configure/issue-3469/fixture/SConstruct
+++ b/test/Configure/issue-3469/fixture/SConstruct
@@ -1,3 +1,7 @@
+# SPDX-License-Identifier: MIT
+#
+# Copyright The SCons Foundation
+
"""
This tests if we add/remove a test in between other tests if a rerun will properly cache the results.
Github issue #3469
@@ -6,7 +10,7 @@ Github issue #3469
DefaultEnvironment(tools=[])
vars = Variables()
-vars.Add(BoolVariable('SKIP', 'Skip Middle Conf test', 0))
+vars.Add(BoolVariable('SKIP', 'Skip Middle Conf test', False))
env = Environment(variables=vars)
conf = Configure(env)