2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00

Updated internal Boost Build's testing system code for collecting file modification timestamps information to do so with greater than 1 second precision (if the OS, file system and the used Python implementation support this). This allows for more precise/correct recognizing whether a file has been touched by a build run or not.

[SVN r79735]
This commit is contained in:
Jurko Gospodnetić
2012-07-25 07:01:43 +00:00
parent acde8c00a1
commit b13df78c3c

View File

@@ -357,7 +357,7 @@ def handle_dir(path, current_parent, load_props, ignore_svn):
fprops = {}
c = SVNTreeNode(os.path.basename(f), None,
fcontents, fprops)
c.mtime = os.stat(f)[stat.ST_MTIME]
c.mtime = os.stat(f).st_mtime
current_parent.add_child(c)
# for each subdir, create a node, walk its tree, add it as a child
@@ -368,7 +368,7 @@ def handle_dir(path, current_parent, load_props, ignore_svn):
dprops = {}
new_dir_node = SVNTreeNode(os.path.basename(d), [], None, dprops)
handle_dir(d, new_dir_node, load_props, ignore_svn)
new_dir_node.mtime = os.stat(f)[stat.ST_MTIME]
new_dir_node.mtime = os.stat(f).st_mtime
current_parent.add_child(new_dir_node)
def get_child(node, name):