X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Ftests%2Fdatasheet-test.c;h=67f68377e14ed987fc42671ba55989ef4510aee5;hb=68cf9cb6840db8f325bd94e00accb5e8f80822c5;hp=1b2cf4290e8b8b584ddcbb312352f8a21db303d1;hpb=661b9ee29cbb6b89c4ea53a05b8a4eb3a5028de0;p=pspp-builds.git diff --git a/src/language/tests/datasheet-test.c b/src/language/tests/datasheet-test.c index 1b2cf429..67f68377 100644 --- a/src/language/tests/datasheet-test.c +++ b/src/language/tests/datasheet-test.c @@ -1,20 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 2007 Free Software Foundation, Inc. - 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 2 of the - License, or (at your option) any later version. + 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. + 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, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ #include @@ -41,7 +39,7 @@ static bool parse_coordinates (struct lexer *, int *rows, int *cols); optionally followed by any of the common model checker option specifications (see check-model.q). */ int -cmd_debug_datasheet (struct lexer *lexer, struct dataset *dataset UNUSED) +cmd_debug_datasheet (struct lexer *lexer, struct dataset *dataset UNUSED) { struct datasheet_test_params params; bool ok; @@ -51,7 +49,7 @@ cmd_debug_datasheet (struct lexer *lexer, struct dataset *dataset UNUSED) params.backing_rows = 0; params.backing_cols = 0; - for (;;) + for (;;) { if (lex_match_id (lexer, "MAX")) { @@ -68,7 +66,7 @@ cmd_debug_datasheet (struct lexer *lexer, struct dataset *dataset UNUSED) break; lex_match (lexer, '/'); } - + ok = check_model (lexer, datasheet_test, ¶ms); printf ("Datasheet test max(%d,%d) backing(%d,%d) %s.\n", params.max_rows, params.max_cols, @@ -81,7 +79,7 @@ cmd_debug_datasheet (struct lexer *lexer, struct dataset *dataset UNUSED) where all of the delimiters are optional, into *ROWS and *COLS. Returns true if successful, false on parse failure. */ static bool -parse_coordinates (struct lexer *lexer, int *rows, int *cols) +parse_coordinates (struct lexer *lexer, int *rows, int *cols) { lex_match (lexer, '='); lex_match (lexer, '('); @@ -97,7 +95,7 @@ parse_coordinates (struct lexer *lexer, int *rows, int *cols) return false; *cols = lex_integer (lexer); lex_get (lexer); - + lex_match (lexer, ')'); return true; }