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