Skip to content

Commit 804341e

Browse files
committed
SCOV.map: do not pass "-v" to "gnatcov map-routines"
The goal of this test driver is to detect the presence of decision map issue ("!!!" and "***" messages), which are emitted regardless of whether "-v" is passed. Upcoming work will trigger the emission of "branch stats" when "-v" is passed (it is currently enabled only when --branch-stats is passed), and logging code for --branch-stats currently crashes or create spurious test failures. As a workaround, do not pass "-v" anymore.
1 parent c38e1e9 commit 804341e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testsuite/SCOV/map.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def run(self):
5454

5555
# Run xcov map-routines and check absence of errors
5656
mapoutput = do(maybe_valgrind([
57-
XCOV, 'map-routines', '-v', f'--target={env.target.triplet}',
57+
XCOV, 'map-routines', f'--target={env.target.triplet}',
5858
'--scos=@{}'.format(list_to_file(self.alis)),
5959
] + self.execs))
6060

0 commit comments

Comments
 (0)