diff options
author | Artem Naluzhnyy <A.Naluzhnyy@samsung.com> | 2019-06-27 14:14:14 +0200 |
---|---|---|
committer | Artem Naluzhnyy <A.Naluzhnyy@samsung.com> | 2019-06-27 14:14:14 +0200 |
commit | 097f7349d3b2a918f67468c3c2d2b63b946987d1 (patch) | |
tree | 1d7d4d561bcb38f1890861eee8c3555e26feffde /shell | |
parent | e2f71f2a8e5d2f2be756638c7ab70d980073d848 (diff) |
Archive Coverity analysed files list to the logs server
The list is stored in "cov-int/coverity-scan-analysed-files.log".
Issue-ID: CIMAN-260
Signed-off-by: Artem Naluzhnyy <A.Naluzhnyy@samsung.com>
Change-Id: Id27cb466977e0bd11e004fd819f66697ca16c26b
Diffstat (limited to 'shell')
-rw-r--r-- | shell/maven-coverity.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/shell/maven-coverity.sh b/shell/maven-coverity.sh index e319b06d9..17601d441 100644 --- a/shell/maven-coverity.sh +++ b/shell/maven-coverity.sh @@ -109,6 +109,16 @@ cov-import-scm \ --dir 'cov-int' \ --scm 'git' +cov-manage-emit \ + --dir cov-int \ + list \ +| grep \ + --invert-match \ + '^Translation unit:$' \ +| sed \ + 's!^[[:digit:]]\+ -> !!' \ +> 'coverity-scan-analysed-files.log' + #----------------------------------------------------------------------------- # Submit results to Coverity service |