Skip to content

Commit 8ab3b03

Browse files
committed
Looks like it works, removing debug prints
1 parent f2e1389 commit 8ab3b03

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/trunk.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,13 +119,12 @@ jobs:
119119
-C cpu0.CFGITCMSZ=15 \
120120
-C cpu0.CFGDTCMSZ=15 \
121121
--simlimit 120
122-
cat sim.out
123122
124123
# Disable exit on error
125124
set +e
126125
# Report failure if any of the ouptut verification checks fail
127126
# store 0 if found (failure), 1 if not (success)
128-
grep -F "ERROR" sim.out
127+
grep -qF "ERROR" sim.out
129128
exit_status=$?
130129
if [[ "$exit_status" -eq "0" ]]; then
131130
cat sim.out
@@ -135,7 +134,7 @@ jobs:
135134
136135
# Report fail if simulation does not complete successfully
137136
# 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
139138
exit_status=$?
140139
if [[ "$exit_status" -eq "1" ]]; then
141140
cat sim.out

0 commit comments

Comments
 (0)