MCPcopy Create free account
hub / github.com/boostorg/build / handle_input_files

Function handle_input_files

src/tools/testing.py:146–153  ·  view source on GitHub ↗
(input_files)

Source from the content-addressed store, hash-verified

144 return make_test("link-fail", sources, requirements, target_name)
145
146def handle_input_files(input_files):
147 if len(input_files) > 1:
148 # Check that sorting made when creating property-set instance will not
149 # change the ordering.
150 if sorted(input_files) != input_files:
151 get_manager().errors()("Names of input files must be sorted alphabetically\n" +
152 "due to internal limitations")
153 return ["<testing.input-file>" + f for f in input_files]
154
155@bjam_signature((["sources", "*"], ["args", "*"], ["input_files", "*"],
156 ["requirements", "*"], ["target_name", "?"],

Callers 2

runFunction · 0.85
run_failFunction · 0.85

Calls 2

get_managerFunction · 0.90
errorsMethod · 0.80

Tested by

no test coverage detected