summaryrefslogtreecommitdiffstats
path: root/baseline/source/epic/epic.c
diff options
context:
space:
mode:
Diffstat (limited to 'baseline/source/epic/epic.c')
-rw-r--r--baseline/source/epic/epic.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/baseline/source/epic/epic.c b/baseline/source/epic/epic.c
index ed08040..e31e54e 100644
--- a/baseline/source/epic/epic.c
+++ b/baseline/source/epic/epic.c
@@ -1131,15 +1131,13 @@ int main( int argc, char **argv )
1131{ 1131{
1132 int exit_code = -1; 1132 int exit_code = -1;
1133 SET_UP 1133 SET_UP
1134 for (jobsComplete=0; jobsComplete<maxJobs; jobsComplete++){ 1134 for_each_job {
1135 START_LOOP
1136 epic_init(); 1135 epic_init();
1137 epic_main(); 1136 epic_main();
1138 // This checks the checksum is as expected. 1137 // This checks the checksum is as expected.
1139 // This is `&` as only the first job will match 1138 // This is `&` as only the first job will match
1140 // (image state persists between jobs). 1139 // (image state persists between jobs).
1141 exit_code &= epic_return(); 1140 exit_code &= epic_return();
1142 STOP_LOOP
1143 } 1141 }
1144 WRITE_TO_FILE 1142 WRITE_TO_FILE
1145 return exit_code; 1143 return exit_code;