From: Paul Eggert Date: Mon, 10 Jan 2005 18:22:11 +0000 (+0000) Subject: (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10). X-Git-Tag: BISON-2_1~205 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/419ab1055e84ec35c2e872094847a10b1dbada69?ds=sidebyside (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10). --- diff --git a/tests/calc.at b/tests/calc.at index 5c0116b0..15d9b77a 100644 --- a/tests/calc.at +++ b/tests/calc.at @@ -1,5 +1,7 @@ # Simple calculator. -*- Autotest -*- -# Copyright (C) 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. + +# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 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 @@ -300,7 +302,11 @@ main (int argc, const char **argv) int count = 0; int status; - alarm (10); + /* This used to be alarm (10), but that isn't enough time for + a July 1995 vintage DEC Alphastation 200 4/100 system, + according to Nelson H. F. Beebe. 100 seconds is enough. */ + alarm (100); + if (argc == 2) yyin = fopen (argv[1], "r"); else