Skip to content

Commit

Permalink
Add 'make' to tools reported by test framework
Browse files Browse the repository at this point in the history
make is used by 'test cases/common/230 external project'

It can also be used internally by gcc when the '-flto' flag is used.
  • Loading branch information
jon-turney committed Jul 29, 2024
1 parent e3740a6 commit f7038a5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions run_project_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -1533,6 +1533,12 @@ def detect_tools(report: bool = True) -> None:
re.compile(r'^([0-9]+(\.[0-9]+)*(-[a-z0-9]+)?)$'),
1,
),
ToolInfo(
'make',
['--version'],
re.compile(r'^GNU Make ([0-9]+(\.[0-9]+)*(-[a-z0-9]+)?)$'),
1,
),
]

def get_version(t: ToolInfo) -> str:
Expand Down

0 comments on commit f7038a5

Please sign in to comment.