summaryrefslogtreecommitdiff
path: root/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-19 02:56:05 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-19 02:56:05 +0000
commitc08854e6d37a3567acabe3a26ba53b237c8efc56 (patch)
tree92857ec41e916a9f00d73a02cef955c146eb1342 /rtems
parent58a643ba46566ad918c7f20bacdb918403bd404d (diff)
2009-09-18 Joel Sherrill <joel.sherrill@oarcorp.com>
* check_endof: Improve to only pay attention to .exe and .ralf files.
Diffstat (limited to 'rtems')
-rw-r--r--rtems/ChangeLog4
-rwxr-xr-xrtems/check_endof14
2 files changed, 14 insertions, 4 deletions
diff --git a/rtems/ChangeLog b/rtems/ChangeLog
index 11d71bb..4655b41 100644
--- a/rtems/ChangeLog
+++ b/rtems/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-18 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * check_endof: Improve to only pay attention to .exe and .ralf files.
+
2009-09-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* bit_all_confs: Update script.
diff --git a/rtems/check_endof b/rtems/check_endof
index 223c4e7..41770d9 100755
--- a/rtems/check_endof
+++ b/rtems/check_endof
@@ -12,10 +12,16 @@ while :
do
for f in `ls -1 ${logdir}* | grep -v info$`
do
- grep "END OF" $f >/dev/null
- if [ $? -ne 0 ] ; then
- echo "ERROR - $f did not appear to complete execution"
- fi
+ case ${f} in
+ *.exe|*.ralf)
+ grep "END OF" $f >/dev/null
+ if [ $? -ne 0 ] ; then
+ echo "ERROR - $f did not appear to complete execution"
+ fi
+ ;;
+ *)
+ ;;
+ esac
done
if [ X${1} = X ] ; then