summaryrefslogtreecommitdiffstats
path: root/test/implicit
diff options
context:
space:
mode:
authorJacob Cassagnol <87133045+jcassagnol-public@users.noreply.github.com>2021-11-10 00:03:39 (GMT)
committerJacob Cassagnol <87133045+jcassagnol-public@users.noreply.github.com>2021-11-10 00:03:39 (GMT)
commitd83d77dd881e683decc1b957f8b0fc3a9d4b8b40 (patch)
tree2d315d6e4632b79b9d3d54c59394edc9a385596a /test/implicit
parent3a7e06174766bfb40d64e16758543bdf313a134d (diff)
downloadSCons-d83d77dd881e683decc1b957f8b0fc3a9d4b8b40.zip
SCons-d83d77dd881e683decc1b957f8b0fc3a9d4b8b40.tar.gz
SCons-d83d77dd881e683decc1b957f8b0fc3a9d4b8b40.tar.bz2
Normalized all sconsfiles and sub-sconsfiles to use algorithm if not defaulted to md5.
Dir search now excludes all types of sconsfiles that are now created. Environment now defaults to the current scons filename instead of .sconsfile Sconsign now has a function used by a lot of code that gets the default sconsign filename Any tests referring to .sconsfile have now been changed, including one old legacy test.
Diffstat (limited to 'test/implicit')
-rw-r--r--test/implicit/changed-node.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/implicit/changed-node.py b/test/implicit/changed-node.py
index c8c5a01..d89c14b 100644
--- a/test/implicit/changed-node.py
+++ b/test/implicit/changed-node.py
@@ -126,8 +126,9 @@ test.pass_test()
#def clean(full=0):
# for f in ('d','b','a','SConstruct'):
# rm(f)
+# database_name = test.get_sconsignname()
# if full:
-# for f in ('.sconsign.dblite', 'build.py'):
+# for f in (database_name + '.dblite', 'build.py'):
# rm(f)
#
#clean(1)