Skip to content

Commit

Permalink
Merge 6cf07f0 into 32f74d6
Browse files Browse the repository at this point in the history
  • Loading branch information
trws committed Jun 26, 2023
2 parents 32f74d6 + 6cf07f0 commit 2cf181d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion resource/traversers/dfu_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -530,8 +530,9 @@ int dfu_impl_t::aux_upv (const jobmeta_t &meta, vtx_t u, const subsystem_t &aux,
if ((prune (meta, x_in, aux, u, resources) == -1)
|| (m_match->aux_discover_vtx (u, aux, resources, *m_graph)) != 0)
goto done;
(*m_graph)[u].idata.colors[aux] = m_color.gray ();

Check warning on line 533 in resource/traversers/dfu_impl.cpp

View check run for this annotation

Codecov / codecov/patch

resource/traversers/dfu_impl.cpp#L533

Added line #L533 was not covered by tests

if (u != (*m_roots)[aux])
if (u != m_graph_db->metadata.roots[aux])

Check warning on line 535 in resource/traversers/dfu_impl.cpp

View check run for this annotation

Codecov / codecov/patch

resource/traversers/dfu_impl.cpp#L535

Added line #L535 was not covered by tests
explore (meta, u, aux, resources, pristine, excl, visit_t::UPV, upv);

p = (*m_graph)[u].schedule.plans;
Expand All @@ -543,6 +544,7 @@ int dfu_impl_t::aux_upv (const jobmeta_t &meta, vtx_t u, const subsystem_t &aux,
m_err_msg += ".\n";
goto done;
}
(*m_graph)[u].idata.colors[aux] = m_color.black ();

Check warning on line 547 in resource/traversers/dfu_impl.cpp

View check run for this annotation

Codecov / codecov/patch

resource/traversers/dfu_impl.cpp#L547

Added line #L547 was not covered by tests
if (m_match->aux_finish_vtx (u, aux, resources, *m_graph, upv) != 0)
goto done;
if ((rc = resolve (upv, to_parent)) != 0)
Expand Down

0 comments on commit 2cf181d

Please sign in to comment.