// // aegis - project change supervisor // Copyright (C) 1999, 2003-2008, 2012, 2014 Peter Miller // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published // by the Free Software Foundation; either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include #include void change_test_baseline_time_set(change::pointer cp, time_t when) { change_test_baseline_time_set(cp, change_architecture_name(cp, 1), when); } void change_test_baseline_time_set(change::pointer cp, string_ty *variant, time_t when) { // // set the test_baseline_time in the architecture variant record // cstate_architecture_times_ty *tp = change_find_architecture_variant(cp, variant); tp->test_baseline_time = when; // // set the test_baseline_time in the change state. // figure the oldest time of all variants. // if one is missing, then is zero. // cstate_ty *cstate_data = cp->cstate_get(); cstate_data->test_baseline_time = tp->test_baseline_time; if (!when) return; for (size_t j = 0; j < cstate_data->architecture->length; ++j) { size_t k = 0; for (k = 0; k < cstate_data->architecture_times->length; ++k) { tp = cstate_data->architecture_times->list[k]; if (str_equal(cstate_data->architecture->list[j], tp->variant)) break; } if (k >= cstate_data->architecture_times->length) { cstate_data->test_baseline_time = 0; break; } if (tp->test_baseline_time < cstate_data->test_baseline_time) cstate_data->test_baseline_time = tp->test_baseline_time; } } // vim: set ts=8 sw=4 et :