diff options
author | William Deegan <bill@baddogconsulting.com> | 2019-06-26 00:27:29 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2019-06-26 00:27:29 (GMT) |
commit | f999d2149d1359327b5b1dd0e1286675c9ba09d4 (patch) | |
tree | 120ae2718eae6dbbf6801be0189131c85a31e66a /test/packaging | |
parent | 096e6b053fa4b85cf74e846c24bba23794c9eb7b (diff) | |
download | SCons-f999d2149d1359327b5b1dd0e1286675c9ba09d4.zip SCons-f999d2149d1359327b5b1dd0e1286675c9ba09d4.tar.gz SCons-f999d2149d1359327b5b1dd0e1286675c9ba09d4.tar.bz2 |
Restore MD5-Timestamp performance by removing try/except from every call. Also some optimized logic for updating and using the dependency_map built as part of the decider. Fixed tests. Note Deciders now need a fourth argument 'repo_node' which is the repository node for the file if it's to be used. This is currently only used by md5-timestamp decider File.changed_timestamp_then_content()
Diffstat (limited to 'test/packaging')
-rw-r--r-- | test/packaging/rpm/explicit-target.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/packaging/rpm/explicit-target.py b/test/packaging/rpm/explicit-target.py index 553ce27..48b5c83 100644 --- a/test/packaging/rpm/explicit-target.py +++ b/test/packaging/rpm/explicit-target.py @@ -77,7 +77,7 @@ env.Package( NAME = 'foo', expect = """ scons: *** Setting target is not supported for rpm. -""" + test.python_file_line(test.workpath('SConstruct'), 12) +""" + test.python_file_line(test.workpath('SConstruct'), 23) test.run(arguments='', status=2, stderr=expect) |