summaryrefslogtreecommitdiff
path: root/sim-scripts
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-11-06 16:55:26 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-11-06 16:55:26 +0000
commit8050f87f5a8c44f8fada53f00c31b3154c06b9c5 (patch)
treebfd154eb80d770a968eb0b85c957b1a5fec66225 /sim-scripts
parent7127cb0d2abad770a97a6dd86a97d316fda698ce (diff)
2011-11-06 Joel Sherrill <joel.sherrill@oarcorp.com>
* uC5282.in: Use grep -E rather rather than egrep as Open Group has marked it legacy.
Diffstat (limited to 'sim-scripts')
-rw-r--r--sim-scripts/ChangeLog5
-rw-r--r--sim-scripts/uC5282.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/sim-scripts/ChangeLog b/sim-scripts/ChangeLog
index f354884..aad9d58 100644
--- a/sim-scripts/ChangeLog
+++ b/sim-scripts/ChangeLog
@@ -1,5 +1,10 @@
2011-11-06 Joel Sherrill <joel.sherrill@oarcorp.com>
+ * uC5282.in: Use grep -E rather rather than egrep as Open Group has
+ marked it legacy.
+
+2011-11-06 Joel Sherrill <joel.sherrill@oarcorp.com>
+
* sis.in: Increase memory.
* uC5282.in: Add pattern for exception meaning program end.
diff --git a/sim-scripts/uC5282.in b/sim-scripts/uC5282.in
index 3bb2479..4ee71ac 100644
--- a/sim-scripts/uC5282.in
+++ b/sim-scripts/uC5282.in
@@ -32,7 +32,7 @@ checkBSPFaults()
for pattern in \
"^PC:.* SR:.*"
do
- egrep "${pattern}" ${logfile}
+ grep -E "${pattern}" ${logfile}
if [ $? -eq 0 ] ; then
return 1
fi