vendor Catch2 and ETL
This commit is contained in:
14
contrib/fsfw_contrib/Catch2-3.7.1/tools/scripts/checkDuplicateFilenames.py
Executable file
14
contrib/fsfw_contrib/Catch2-3.7.1/tools/scripts/checkDuplicateFilenames.py
Executable file
@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
||||
files_set = set()
|
||||
|
||||
for root, dir, files in os.walk("src/catch2"):
|
||||
for file in files:
|
||||
if file not in files_set:
|
||||
files_set.add(file)
|
||||
else:
|
||||
print("File %s is duplicate" % file)
|
||||
sys.exit(1)
|
Reference in New Issue
Block a user