diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-12-14 04:16:47 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-12-14 04:16:47 +0000 |
commit | d52c3d729c580d12872486d0654ece94e3aa64bc (patch) | |
tree | 905112712da8618ef3f1019c7ea2e59bd5ae510c /tests | |
parent | update ldconfig flags (diff) | |
download | pax-utils-d52c3d729c580d12872486d0654ece94e3aa64bc.tar.gz pax-utils-d52c3d729c580d12872486d0654ece94e3aa64bc.tar.bz2 pax-utils-d52c3d729c580d12872486d0654ece94e3aa64bc.zip |
ignore elf.h as we do not author it
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/source/dotest | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/source/dotest b/tests/source/dotest index 9b674c9..7b462f9 100755 --- a/tests/source/dotest +++ b/tests/source/dotest @@ -92,6 +92,9 @@ testit src.style # Auto clean up the space issues # for x in $(find ../.. '(' -name '*.c' -o -name '*.h' ')' ); do + case ${x} in + */elf.h) continue ;; # Not our files + esac ./space "$x" > "$x~" if ! diff -u "$x" "$x~" ; then echo "New file: $x~" |