Changeset f79b204 in git


Ignore:
Timestamp:
May 29, 1999, 1:58:26 PM (24 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
cd075a8ddcd981e5d8d36c244891bf0efa98af7e
Parents:
4e08f5527594b7553db66494ca3f2c698b613548
Message:
*hannes: added -d/sdb


git-svn-id: file:///usr/local/Singular/svn/trunk@3078 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/tesths.cc

    r4e08f55 rf79b204  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: tesths.cc,v 1.61 1999-05-07 15:41:35 Singular Exp $ */
     4/* $Id: tesths.cc,v 1.62 1999-05-29 11:58:26 Singular Exp $ */
    55
    66/*
     
    5656#define LON_NO_WARN         "no-warn"
    5757#define LON_NO_OUT          "no-out"
     58#define LON_SDB             "sdb"
    5859// undocumented options
    5960#ifdef HAVE_MPSR
     
    6970#endif
    7071  {LON_EXECUTE,           1,  0,  'c'},
     72  {LON_SDB,               0,  0,  'd'},
    7173  {LON_ECHO,              2,  0,  'e'},
    7274  {LON_HELP,              0,  0,  'h'},
     
    8284  {LON_NO_RC,             0,  0,  LONG_OPTION_RETURN},
    8385  {LON_NO_WARN,           0,  0,  LONG_OPTION_RETURN},
    84   {LON_NO_OUT,           0,  0,  LONG_OPTION_RETURN},
     86  {LON_NO_OUT,            0,  0,  LONG_OPTION_RETURN},
    8587  {LON_MIN_TIME,          1,  0,  LONG_OPTION_RETURN},
    8688#ifdef HAVE_MPSR
     
    98100};
    99101// #define SHORT_OPTS_STRING "bc:e::hqr:tu:v"
    100 #define SHORT_OPTS_STRING "bhqtvxec:r:u:"
     102#define SHORT_OPTS_STRING "bdhqtvxec:r:u:"
    101103
    102104struct sing_option
     
    117119  {LON_HELP,        0,          "Print help message and exit",                          0},
    118120  {LON_QUIET,       0,          "Do not print start-up banner and library load messages",            0},
     121  {LON_SDB,         0,          "Enable sdb debugger (experimental)",            0},
    119122  {LON_NO_TTY,      0,          "Do not redefine the terminal characteristics",         0},
    120123  {LON_VERSION,     0,          "Print extended version and configuration info",        0},
     
    314317          exit(1);
    315318#endif
    316 
    317319        case 'h':
    318320          mainHelp(argv[0]);
     
    330332          mainSetSingOptionValue(LON_NO_TTY, (char*) 1);
    331333          break;
     334
     335        case 'd':
     336          sdb_flags = 1;
     337          break;
    332338
    333339        case 'v':
Note: See TracChangeset for help on using the changeset viewer.