File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -119,13 +119,12 @@ jobs:
119
119
-C cpu0.CFGITCMSZ=15 \
120
120
-C cpu0.CFGDTCMSZ=15 \
121
121
--simlimit 120
122
- cat sim.out
123
122
124
123
# Disable exit on error
125
124
set +e
126
125
# Report failure if any of the ouptut verification checks fail
127
126
# store 0 if found (failure), 1 if not (success)
128
- grep -F "ERROR" sim.out
127
+ grep -qF "ERROR" sim.out
129
128
exit_status=$?
130
129
if [[ "$exit_status" -eq "0" ]]; then
131
130
cat sim.out
@@ -135,7 +134,7 @@ jobs:
135
134
136
135
# Report fail if simulation does not complete successfully
137
136
# store 0 if found (success), 1 if not (failure)
138
- grep -F "SUCCESS: Program complete, exiting." sim.out
137
+ grep -qF "SUCCESS: Program complete, exiting." sim.out
139
138
exit_status=$?
140
139
if [[ "$exit_status" -eq "1" ]]; then
141
140
cat sim.out
You can’t perform that action at this time.
0 commit comments