X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Ftests%2Fdatasheet-test.c;fp=src%2Flanguage%2Ftests%2Fdatasheet-test.c;h=0000000000000000000000000000000000000000;hb=a55d3f25a88c3557fc14a71c1b78c01c1972581f;hp=dfe8b6b2f0a4b1a341412522a5f6f579d0f8fa33;hpb=69dadb9ec8ffda14e4e1758b4cd32b210bd24649;p=pspp diff --git a/src/language/tests/datasheet-test.c b/src/language/tests/datasheet-test.c deleted file mode 100644 index dfe8b6b2f0..0000000000 --- a/src/language/tests/datasheet-test.c +++ /dev/null @@ -1,103 +0,0 @@ -/* 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 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 "datasheet-check.h" - -#include -#include -#include -#include -#include - -#include "error.h" -#include "xalloc.h" - -static bool parse_coordinates (struct lexer *, int *rows, int *cols); - -/* Parses and executes the DEBUG DATASHEET command, which runs - the model checker on the datasheet data structure. The - command may include a specification of the form - MAX=(ROWS,COLS) to specify the maximum size of the data sheet - during the model checker run (default: 4x4) or - BACKING=(ROWS,COLS) to specify the size of the casereader - backing the datasheet (default: no backing). These may be - 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) -{ - struct datasheet_test_params params; - bool ok; - - params.max_rows = 4; - params.max_cols = 4; - params.backing_rows = 0; - params.backing_cols = 0; - - - for (;;) - { - if (lex_match_id (lexer, "MAX")) - { - if (!parse_coordinates (lexer, ¶ms.max_rows, ¶ms.max_cols)) - return CMD_FAILURE; - } - else if (lex_match_id (lexer, "BACKING")) - { - if (!parse_coordinates (lexer, - ¶ms.backing_rows, ¶ms.backing_cols)) - return CMD_FAILURE; - } - else - 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, - params.backing_rows, params.backing_cols, - ok ? "successful" : "failed"); - return ok ? lex_end_of_command (lexer) : CMD_FAILURE; -} - -/* Parses a pair of coordinates with the syntax =(ROWS,COLS), - 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) -{ - lex_match (lexer, '='); - lex_match (lexer, '('); - - if (!lex_force_int (lexer)) - return false; - *rows = lex_integer (lexer); - lex_get (lexer); - - lex_match (lexer, ','); - - if (!lex_force_int (lexer)) - return false; - *cols = lex_integer (lexer); - lex_get (lexer); - - lex_match (lexer, ')'); - return true; -} -