Changeset f79b204 in git for Singular/tesths.cc
- Timestamp:
- May 29, 1999, 1:58:26 PM (24 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- cd075a8ddcd981e5d8d36c244891bf0efa98af7e
- Parents:
- 4e08f5527594b7553db66494ca3f2c698b613548
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/tesths.cc
r4e08f55 rf79b204 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: tesths.cc,v 1.6 1 1999-05-07 15:41:35Singular Exp $ */4 /* $Id: tesths.cc,v 1.62 1999-05-29 11:58:26 Singular Exp $ */ 5 5 6 6 /* … … 56 56 #define LON_NO_WARN "no-warn" 57 57 #define LON_NO_OUT "no-out" 58 #define LON_SDB "sdb" 58 59 // undocumented options 59 60 #ifdef HAVE_MPSR … … 69 70 #endif 70 71 {LON_EXECUTE, 1, 0, 'c'}, 72 {LON_SDB, 0, 0, 'd'}, 71 73 {LON_ECHO, 2, 0, 'e'}, 72 74 {LON_HELP, 0, 0, 'h'}, … … 82 84 {LON_NO_RC, 0, 0, LONG_OPTION_RETURN}, 83 85 {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}, 85 87 {LON_MIN_TIME, 1, 0, LONG_OPTION_RETURN}, 86 88 #ifdef HAVE_MPSR … … 98 100 }; 99 101 // #define SHORT_OPTS_STRING "bc:e::hqr:tu:v" 100 #define SHORT_OPTS_STRING "b hqtvxec:r:u:"102 #define SHORT_OPTS_STRING "bdhqtvxec:r:u:" 101 103 102 104 struct sing_option … … 117 119 {LON_HELP, 0, "Print help message and exit", 0}, 118 120 {LON_QUIET, 0, "Do not print start-up banner and library load messages", 0}, 121 {LON_SDB, 0, "Enable sdb debugger (experimental)", 0}, 119 122 {LON_NO_TTY, 0, "Do not redefine the terminal characteristics", 0}, 120 123 {LON_VERSION, 0, "Print extended version and configuration info", 0}, … … 314 317 exit(1); 315 318 #endif 316 317 319 case 'h': 318 320 mainHelp(argv[0]); … … 330 332 mainSetSingOptionValue(LON_NO_TTY, (char*) 1); 331 333 break; 334 335 case 'd': 336 sdb_flags = 1; 337 break; 332 338 333 339 case 'v':
Note: See TracChangeset
for help on using the changeset viewer.