Fathi Boudra | 422bf77 | 2019-12-02 11:10:16 +0200 | [diff] [blame] | 1 | /* View this file with xdot */ |
| 2 | digraph coverity { |
| 3 | "cov-config" -> "golden-cov-build"; |
| 4 | "golden-setup" -> "golden-cov-build"; |
| 5 | |
| 6 | "cov-config" -> "branch-cov-build"; |
| 7 | "branch-setup" -> "branch-cov-build"; |
| 8 | |
| 9 | "golden-cov-build" -> "golden-cov-analyze"; |
| 10 | "branch-cov-build" -> "branch-cov-analyze"; |
| 11 | |
| 12 | "stream-setup" -> "golden-cov-commit-defects"; |
| 13 | "golden-cov-analyze" -> "golden-cov-commit-defects"; |
| 14 | |
| 15 | "stream-setup" -> "branch-cov-commit-defects"; |
| 16 | "branch-cov-analyze" -> "branch-cov-commit-defects"; |
| 17 | |
| 18 | "golden-cov-commit-defects" -> "branch-report-compare"; |
| 19 | "branch-cov-analyze" -> "branch-report-compare"; |
| 20 | |
| 21 | "stream-setup" -> "branch-report-full"; |
| 22 | "branch-cov-analyze" -> "branch-report-full"; |
| 23 | "branch-cov-commit-defects" -> "branch-report-full"; |
| 24 | |
| 25 | /* Useful Coverity analysis targets */ |
| 26 | "branch-cov-commit-defects" [color=red style=dotted]; |
| 27 | "branch-report-compare" [color=red]; |
| 28 | "branch-report-full" [color=red]; |
| 29 | } |