]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
QA: Skip startfiles in canary check.
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 8 Apr 2010 12:28:16 +0000 (14:28 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 8 Apr 2010 12:28:16 +0000 (14:28 +0200)
tools/quality-agent.d/050-canary

index 9841d5a8dc766c6ce7d70faed25b8677ed54d3eb..4f7860e7da90044e092356743d5c1c88b02403ad 100755 (executable)
@@ -9,6 +9,10 @@ function check() {
 
        local file
        for file in $(find_elf_files ${BINARY_PATHS}); do
+               if filter_startfiles ${file}; then
+                       continue
+               fi
+
                if ! has_canary ${file}; then
                        log_error "  Has no canary: ${file}"
                        failed=1