+2005-08-15 Ulrich Drepper <drepper@redhat.com>
+
+ * run-elflint-self.sh: Don't run test if the file doesn't exist.
+
2005-08-15 Roland McGrath <roland@redhat.com>
* dwflmodtest.c (print_instance, print_inline): New functions.
runtest() {
# Uncomment for debuging
# echo $1
- ../src/elflint --quiet --gnu-ld $1
+ if [ -f $1 ]; then
+ ../src/elflint --quiet --gnu-ld $1
+ fi
}
runtest ../src/addr2line
runtest ../libebl/libebl_sh.so
runtest ../libebl/libebl_sparc.so
runtest ../libebl/libebl_x86_64.so
-
-