summaryrefslogtreecommitdiffstats
path: root/print_wiki.c
diff options
context:
space:
mode:
authorStefan Tauner <stefan.tauner@alumni.tuwien.ac.at>2012-07-28 19:35:26 +0000
committerStefan Tauner <stefan.tauner@alumni.tuwien.ac.at>2012-07-28 19:35:26 +0000
commit2c20b28f0e057c231c03b839b3c78f21cc6b0315 (patch)
treee8398b3d451612b394f50cc373590dcccee44aa6 /print_wiki.c
parentd94d25d75be771eec26578355dc5c70cfb3e9c73 (diff)
downloadflashrom-2c20b28f0e057c231c03b839b3c78f21cc6b0315.tar.gz
flashrom-2c20b28f0e057c231c03b839b3c78f21cc6b0315.tar.bz2
flashrom-2c20b28f0e057c231c03b839b3c78f21cc6b0315.zip
Introduce enum test_state
Previously boards in the wiki were tagged either as working or as known bad. But we added support to various boards via board enables that were then never tested because the owners have not reported back. This can now be tagged with NT and is shown appropriately. Also, the underlying data structure indicating state was converted from macros to an enum while preserving original integer values and is used for programmers and chipsets too. Corresponding to flashrom svn r1555. Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
Diffstat (limited to 'print_wiki.c')
-rw-r--r--print_wiki.c19
1 files changed, 12 insertions, 7 deletions
diff --git a/print_wiki.c b/print_wiki.c
index 377154d90..68a69a975 100644
--- a/print_wiki.c
+++ b/print_wiki.c
@@ -129,23 +129,27 @@ static void print_supported_chipsets_wiki(int cols)
static void wiki_helper(const char *devicetype, int cols,
const struct board_info boards[])
{
- int i, j, k = 0, boardcount_good = 0, boardcount_bad = 0, color = 1;
- int num_notes = 0;
+ int i, j, k;
+ unsigned int boardcount_good = 0, boardcount_bad = 0, boardcount_nt = 0;
+ int num_notes = 0, color = 1;
char *notes = calloc(1, 1);
char tmp[900 + 1];
const struct board_match *b = board_matches;
for (i = 0; boards[i].vendor != NULL; i++) {
- if (boards[i].working)
+ if (boards[i].working == OK)
boardcount_good++;
+ else if (boards[i].working == NT)
+ boardcount_nt++;
else
boardcount_bad++;
}
- printf("\n\nTotal amount of supported %s: '''%d'''. "
- "Not yet supported (i.e., known-bad): '''%d'''.\n\n"
+ printf("\n\nTotal amount of known good boards %s: '''%d'''; "
+ "Untested (e.g. user vanished before testing new code): '''%d'''; "
+ "Not yet supported (i.e. known-bad): '''%d'''.\n\n"
"{| border=\"0\" valign=\"top\"\n| valign=\"top\"|\n\n%s",
- devicetype, boardcount_good, boardcount_bad, board_th);
+ devicetype, boardcount_good, boardcount_nt, boardcount_bad, board_th);
for (i = 0, j = 0; boards[i].vendor != NULL; i++, j++) {
@@ -171,7 +175,8 @@ static void wiki_helper(const char *devicetype, int cols,
b[k].lb_vendor ? b[k].lb_vendor : "",
b[k].lb_vendor ? ":" : "",
b[k].lb_vendor ? b[k].lb_part : "",
- (boards[i].working) ? "OK" : "No");
+ (boards[i].working == OK) ? "OK" :
+ (boards[i].working == NT) ? "?3" : "No");
if (boards[i].note) {
printf("<sup>%d</sup>\n", num_notes + 1);