(input_file)
| 2854 | seen = set() |
| 2855 | |
| 2856 | def check(input_file): |
| 2857 | if get_file_suffix(input_file) in DYLIB_EXTENSIONS and not building.is_wasm_dylib(input_file): |
| 2858 | abspath = os.path.abspath(input_file) |
| 2859 | if abspath in seen: |
| 2860 | return False |
| 2861 | seen.add(abspath) |
| 2862 | return True |
| 2863 | |
| 2864 | return [f for f in inputs if check(f)] |
| 2865 |
no test coverage detected