My Project
Loading...
Searching...
No Matches
tesths.cc File Reference
#include "kernel/mod2.h"
#include "omalloc/omalloc.h"
#include "misc/options.h"
#include "factory/factory.h"
#include "kernel/oswrapper/feread.h"
#include "Singular/fevoices.h"
#include "kernel/oswrapper/timer.h"
#include "kernel/oswrapper/vspace.h"
#include "ipshell.h"
#include "cntrlc.h"
#include "links/silink.h"
#include "ipid.h"
#include "sdb.h"
#include "feOpt.h"
#include "misc/distrib.h"
#include "mmalloc.h"
#include "tok.h"
#include "resources/fegetopt.h"
#include "Singular/countedref.h"
#include "Singular/pyobject_setup.h"
#include <unistd.h>
#include <NTL/config.h>
#include "Singular/links/simpleipc.h"

Go to the source code of this file.

Functions

void siInit (char *)
int mmInit (void)
int main (int argc, char **argv)

Variables

EXTERN_VAR FILE * File_Log
EXTERN_VAR BOOLEAN FE_OPT_NO_SHELL_FLAG

Function Documentation

◆ main()

int main ( int argc,
char ** argv )

Definition at line 66 of file tesths.cc.

69{
70 mmInit();
71 // Don't worry: ifdef OM_NDEBUG, then all these calls are undef'ed
72 omInitRet_2_Info(argv[0]);
74
75#ifdef PSINGULAR
76 global_argv0 = argv[0];
77#endif
78// how many processes ? -----------------------------------------------------
79 {
80 int cpus=1;
81 int cpu_n;
82 #ifdef _SC_NPROCESSORS_ONLN
83 if ((cpu_n=sysconf(_SC_NPROCESSORS_ONLN))>cpus) cpus=cpu_n;
84 #elif defined(_SC_NPROCESSORS_CONF)
85 if ((cpu_n=sysconf(_SC_NPROCESSORS_CONF))>cpus) cpus=cpu_n;
86 #endif
87 #ifdef HAVE_SIMPLEIPC
89 #endif
90 feSetOptValue(FE_OPT_CPUS, cpus);
91// how many threads ? -----------------------------------------------------
92 feSetOptValue(FE_OPT_THREADS, cpus);
93 }
94 siInit(argv[0]);
96
97 // parse command line options
98 int optc, option_index;
99 const char* errormsg;
100 while((optc = fe_getopt_long(argc, argv,
101 SHORT_OPTS_STRING, feOptSpec, &option_index))
102 != EOF)
103 {
104 if (optc == '?' || optc == 0)
105 {
106 fprintf(stderr, "Use '%s --help' for a complete list of options\n", feArgv0);
107 exit(1);
108 }
109
110 if (optc != LONG_OPTION_RETURN)
111 option_index = feGetOptIndex(optc);
112
113 assume(option_index >= 0 && option_index < (int) FE_OPT_UNDEF);
114
115 if (fe_optarg == NULL &&
116 (feOptSpec[option_index].type == feOptBool ||
117 feOptSpec[option_index].has_arg == optional_argument))
118 errormsg = feSetOptValue((feOptIndex) option_index, (int) 1);
119 else
120 errormsg = feSetOptValue((feOptIndex) option_index, fe_optarg);
121 // not more than MAX_PROCESS cpus
122
123 if (errormsg)
124 {
125 if (fe_optarg == NULL)
126 fprintf(stderr, "Error: Option '--%s' %s\n",
127 feOptSpec[option_index].name, errormsg);
128 else
129 fprintf(stderr, "Error: Option '--%s=%s' %s\n",
130 feOptSpec[option_index].name, fe_optarg, errormsg);
131 fprintf(stderr, "Use '%s --help' for a complete list of options\n", feArgv0);
132 exit(1);
133 }
134 if (optc == 'h') exit(0);
135 switch(option_index)
136 {
137 case FE_OPT_DUMP_VERSIONTUPLE:
138 exit(0);
139 break;
140 default: ;
141 }
142 }
143 long cpus=(long)feOptValue(FE_OPT_CPUS);
144 #ifdef HAVE_VSPACE
146 {
148 feSetOptValue(FE_OPT_CPUS,cpus);
149 }
150 #endif
151
152 /* say hello */
153
154 if (TEST_V_QUIET)
155 {
156 (printf)(
157" SINGULAR /"
158#ifndef MAKE_DISTRIBUTION
159" Development"
160#endif
161"\n"
162" A Computer Algebra System for Polynomial Computations / version %s\n"
163" 0<\n"
164" by: W. Decker, G.-M. Greuel, G. Pfister, H. Schoenemann \\ %s\n"
165"FB Mathematik der Universitaet, D-67653 Kaiserslautern \\\n"
166, VERSION, VERSION_DATE);
167 if (feOptValue(FE_OPT_NO_SHELL))
168 {
169 WarnS("running in restricted mode:"
170 " shell invocation and file links are disallowed");
172 }
173 }
174 else
175 {
177 if (feOptValue(FE_OPT_SORT)) On(SW_USE_NTL_SORT);
178 dup2(1,2);
179 /* alternative:
180 * memcpy(stderr,stdout,sizeof(FILE));
181 */
182 }
183 if (feOptValue(FE_OPT_LOG)!=NULL)
184 {
185 int pid=getpid();
186 char *buf=(char*)malloc(10+strlen((char*) feOptSpec[FE_OPT_LOG].value));
187 snprintf(buf,10+strlen((char*) feOptSpec[FE_OPT_LOG].value),
188 "%s.%d",(char*) feOptSpec[FE_OPT_LOG].value,pid);
189 File_Log=fopen(buf,"w");
190 }
191
192#ifdef SINGULAR_PYOBJECT_SETUP_H
194#endif
195#ifdef SI_COUNTEDREF_AUTOLOAD
197#endif
198 errorreported = 0;
199
200 // -- example for "static" modules ------
201 //load_builtin("huhu.so",FALSE,(SModulFunc_t)huhu_mod_init);
202 //module_help_main("huhu.so","Help for huhu\nhaha\n");
203 //module_help_proc("huhu.so","p","Help for huhu::p\nhaha\n");
204 setjmp(si_start_jmpbuf);
205
206 // Now, put things on the stack of stuff to do
207 // Last thing to do is to execute given scripts
208 if (fe_optind < argc)
209 {
210 int i = argc - 1;
211 FILE *fd;
212 while (i >= fe_optind)
213 {
214 if ((fd = feFopen(argv[i], "r")) == NULL)
215 {
216 Warn("Can not open %s", argv[i]);
217 }
218 else
219 {
220 fclose(fd);
221 newFile(argv[i]);
222 }
223 i--;
224 }
225 }
226 else
227 {
229 }
230
231 // before scripts, we execute -c, if it was given
232 if (feOptValue(FE_OPT_EXECUTE) != NULL)
233 newBuffer(omStrDup((char*) feOptValue(FE_OPT_EXECUTE)), BT_execute);
234
235 // first thing, however, is to load .singularrc from Singularpath
236 // and cwd/$HOME (in that order).
237 if (! feOptValue(FE_OPT_NO_RC))
238 {
239 char buf[MAXPATHLEN];
240 FILE * rc = feFopen("." DIR_SEPP ".singularrc", "r", buf);
241 if (rc == NULL) rc = feFopen("~" DIR_SEPP ".singularrc", "r", buf);
242 if (rc == NULL) rc = feFopen(".singularrc", "r", buf);
243
244 if (rc != NULL)
245 {
246 if (BVERBOSE(V_LOAD_LIB))
247 Print("// ** executing %s\n", buf);
248 fclose(rc);
249 newFile(buf);
250 }
251 }
252
253 /* start shell */
255 {
257 char *linkname=(char*) feOptValue(FE_OPT_LINK);
258 if((linkname!=NULL)&&(strcmp(linkname,"ssi")==0))
259 {
260 return ssiBatch((char*) feOptValue(FE_OPT_MPHOST),(char*) feOptValue(FE_OPT_MPPORT));
261 //Print("batch: p:%s, h:%s\n",(char*) feOptValue(FE_OPT_MPPORT),(char*) feOptValue(FE_OPT_MPHOST));
262 //exit(0);
263 }
264 else
265 {
266 Print("** missing arguments: -b requires --link/--MPhost/--MPport\n");
267 return 1;
268 }
269 }
270 setjmp(si_start_jmpbuf);
271 yyparse();
272 m2_end(0);
273 return 0;
274}
#define TRUE
Definition auxiliary.h:101
#define FALSE
Definition auxiliary.h:97
void On(int sw)
switches
int i
Definition cfEzgcd.cc:132
static const int SW_USE_NTL_SORT
set to 1 to sort factors in a factorization
Definition cf_defs.h:39
VAR jmp_buf si_start_jmpbuf
Definition cntrlc.cc:98
VAR BOOLEAN singular_in_batchmode
Definition cntrlc.cc:62
void init_signals()
init signal handlers and error handling for libraries: NTL, factory
Definition cntrlc.cc:530
void countedref_init()
Definition countedref.h:458
#define Print
Definition emacs.cc:80
#define Warn
Definition emacs.cc:77
#define WarnS
Definition emacs.cc:78
EXTERN_VAR BOOLEAN FE_OPT_NO_SHELL_FLAG
Definition extra.cc:166
#define VERSION
FILE * feFopen(const char *path, const char *mode, char *where, short useWerror, short path_only)
Definition feFopen.cc:47
VAR short errorreported
Definition feFopen.cc:23
feOptIndex
Definition feOptGen.h:15
@ FE_OPT_UNDEF
Definition feOptGen.h:15
#define LONG_OPTION_RETURN
Definition feOptTab.h:4
const char SHORT_OPTS_STRING[]
Definition feOpt.cc:29
feOptIndex feGetOptIndex(const char *name)
Definition feOpt.cc:104
const char * feSetOptValue(feOptIndex opt, char *optarg)
Definition feOpt.cc:154
static void * feOptValue(feOptIndex opt)
Definition feOpt.h:40
EXTERN_VAR struct fe_option feOptSpec[]
Definition feOpt.h:17
VAR char * feArgv0
Definition feResource.cc:19
#define DIR_SEPP
Definition feResource.h:7
int fe_getopt_long(int argc, char *const *argv, const char *options, const struct fe_option *long_options, int *opt_index)
Definition fegetopt.c:664
char * fe_optarg
Definition fegetopt.c:94
int fe_optind
Definition fegetopt.c:109
@ feOptBool
Definition fegetopt.h:77
#define optional_argument
Definition fegetopt.h:101
char * fe_fgets_dummy(const char *, char *, int)
Definition feread.cc:455
char *(* fe_fgets_stdin)(const char *pr, char *s, int size)
Definition feread.cc:32
void newBuffer(char *s, feBufferTypes t, procinfo *pi, int lineno)
Definition fevoices.cc:166
VAR Voice * currentVoice
Definition fevoices.cc:49
VAR FILE * File_Log
Definition fevoices.cc:33
BOOLEAN newFile(char *fname)
Definition fevoices.cc:129
Voice * feInitStdin(Voice *pp)
Definition fevoices.cc:677
@ BT_execute
Definition fevoices.h:23
int yyparse(void)
Definition grammar.cc:2149
#define assume(x)
Definition mod2.h:389
void m2_end(int i)
Definition misc_ip.cc:1106
static const int MAX_PROCESS
Definition vspace.h:1419
#define omStrDup(s)
#define malloc
Definition omAllocFunc.c:12
#define omInitGetBackTrace()
#define NULL
Definition omList.c:12
#define MAXPATHLEN
Definition omRet2Info.c:22
#define BVERBOSE(a)
Definition options.h:35
#define TEST_V_QUIET
Definition options.h:135
#define V_LOAD_LIB
Definition options.h:47
void pyobject_setup()
initialize blackbox support for pyobject; functionilty os autoloaded on demand
int status int fd
Definition si_signals.h:69
int status int void * buf
Definition si_signals.h:69
#define SIPC_MAX_SEMAPHORES
Definition simpleipc.h:10
int name
New type name for int.
void siInit(char *)
Definition misc_ip.cc:1366
int mmInit(void)
Definition tesths.cc:50
#define omInitRet_2_Info(argv0)
Definition xalloc.h:274

◆ mmInit()

int mmInit ( void )

Definition at line 50 of file tesths.cc.

51{
52#ifndef X_OMALLOC
53#if defined(OMALLOC_USES_MALLOC)
54 /* in mmstd.c, for some architectures freeSize() unconditionally uses the *system* free() */
55 /* sage ticket 5344: http://trac.sagemath.org/sage_trac/ticket/5344 */
56 /* do not rely on the default in Singular as libsingular may be different */
57 mp_set_memory_functions(omMallocFunc,omReallocSizeFunc,omFreeSizeFunc);
58#else
59 mp_set_memory_functions(malloc,reallocSize,freeSize);
60#endif
61#endif
62 return 1;
63}
#define freeSize
Definition omAllocFunc.c:15
#define reallocSize
Definition omAllocFunc.c:17
#define omFreeSizeFunc
Definition xalloc.h:285
#define omReallocSizeFunc
Definition xalloc.h:286
#define omMallocFunc
Definition xalloc.h:284

◆ siInit()

void siInit ( char * name)
extern

Definition at line 1366 of file misc_ip.cc.

1367{
1368// memory initialization: -----------------------------------------------
1369#ifdef HAVE_OMALLOC
1370 om_Opts.OutOfMemoryFunc = omSingOutOfMemoryFunc;
1371#ifndef OM_NDEBUG
1372#ifndef __OPTIMIZE__
1373 #ifndef MAKE_DISTRUBTION
1374 om_Opts.ErrorHook = dErrorBreak;
1375 #endif
1376#else
1377 om_Opts.Keep = 0; /* !OM_NDEBUG, __OPTIMIZE__*/
1378#endif
1379#else
1380 om_Opts.Keep = 0; /* OM_NDEBUG */
1381#endif
1382 omInitInfo();
1383#endif
1384// factory
1385#ifndef HAVE_NTL
1386 extern void initPT();
1387 initPT();
1388#endif
1389 { // set cpus (in siInit), if SINGULAR_CPUS is set, set within the limits
1390 char *env_cpu=getenv("SINGULAR_CPUS");
1391 if (env_cpu!=NULL)
1392 {
1393 int cpu_n,cpus;
1394 #ifdef _SC_NPROCESSORS_ONLN
1395 if ((cpu_n=sysconf(_SC_NPROCESSORS_ONLN))>cpus) cpus=cpu_n;
1396 #elif defined(_SC_NPROCESSORS_CONF)
1397 if ((cpu_n=sysconf(_SC_NPROCESSORS_CONF))>cpus) cpus=cpu_n;
1398 #endif
1399 #ifdef HAVE_SIMPLEIPC
1401 #endif
1402
1403 int t=atoi(env_cpu);
1404 if ((t>=0)&&(t<cpus)) cpus=t;
1405 feSetOptValue(FE_OPT_CPUS, cpus);
1406 // how many threads ? -----------------------------------------------------
1407 feSetOptValue(FE_OPT_THREADS, cpus);
1408 }
1409 }
1410// options ---------------------------------------------------------------
1411 si_opt_1=0;
1412// interpreter tables etc.: -----------------------------------------------
1413 memset(&sLastPrinted,0,sizeof(sleftv));
1414 sLastPrinted.rtyp=NONE;
1415
1416 extern int iiInitArithmetic(); iiInitArithmetic(); // iparith.cc
1417
1418 basePack=(package)omAlloc0(sizeof(*basePack));
1420 idhdl h;
1421 h=enterid("Top", 0, PACKAGE_CMD, &IDROOT, FALSE);
1423 IDPACKAGE(h)->language = LANG_TOP;
1424 currPackHdl=h;
1425 basePackHdl=h;
1426
1427 coeffs_BIGINT = nInitChar(n_Q,(void*)1);
1428
1429#if 1
1430 // def HAVE_POLYEXTENSIONS
1431 if(TRUE)
1432 {
1433 n_coeffType type;
1434 #ifdef SINGULAR_4_2
1436 assume(type == n_polyExt);
1437 #endif
1438
1439 type = nRegister(n_algExt, naInitChar);
1440 assume(type == n_algExt);
1441
1443 assume(type == n_transExt);
1444
1445 (void)type;
1446 }
1447#endif
1448
1449// random generator: -----------------------------------------------
1450 {
1451 int t=startTimer();
1452 if (t==0) t=1;
1453 initRTimer();
1454 siSeed=t;
1455 factoryseed(t);
1456 siRandomStart=t;
1457 feOptSpec[FE_OPT_RANDOM].value = (void*) ((long)siRandomStart);
1458 }
1459
1460// ressource table: ----------------------------------------------------
1461 // Don't worry: ifdef OM_NDEBUG, then all these calls are undef'ed
1462 // hack such that all shared' libs in the bindir are loaded correctly
1464
1465// singular links: --------------------------------------------------
1467 myynest=0;
1468
1469// default coeffs
1470 {
1471 idhdl h;
1472 h=enterid("QQ",0/*level*/, CRING_CMD,&(basePack->idroot),FALSE /*init*/,FALSE /*search*/);
1473 IDDATA(h)=(char*)nInitChar(n_Q,NULL);
1474 h=enterid("ZZ",0/*level*/, CRING_CMD,&(basePack->idroot),FALSE /*init*/,FALSE /*search*/);
1475 IDDATA(h)=(char*)nInitChar(n_Z,NULL);
1477 iiAddCproc("kernel","crossprod",FALSE,iiCrossProd);
1478 iiAddCproc("kernel","Float",FALSE,iiFloat);
1479 //h=enterid("RR",0/*level*/, CRING_CMD,&(basePack->idroot),FALSE /*init*/,FALSE /*search*/);
1480 //IDDATA(h)=(char*)nInitChar(n_R,NULL);
1481 //h=enterid("CC",0/*level*/, CRING_CMD,&(basePack->idroot),FALSE /*init*/,FALSE /*search*/);
1482 //IDDATA(h)=(char*)nInitChar(n_long_C,NULL);
1483 }
1484// setting routines for PLURAL QRINGS:
1485// allowing to use libpolys without libSingular(kStd)
1486#ifdef HAVE_PLURAL
1487 nc_NF=k_NF;
1493#endif
1494// loading standard.lib -----------------------------------------------
1495 if (! feOptValue(FE_OPT_NO_STDLIB))
1496 {
1497 BITSET save1,save2;
1498 SI_SAVE_OPT(save1,save2);
1500 iiLibCmd("standard.lib", TRUE,TRUE,TRUE);
1501 SI_RESTORE_OPT(save1,save2);
1502 }
1503 // interpreter error handling
1504 #ifndef __CYGWIN__
1505 factoryError=callWerrorS; // to honour later changes of variable WerrorS
1506 #endif
1507 errorreported = 0;
1508}
BOOLEAN naInitChar(coeffs cf, void *infoStruct)
Initialize the coeffs object.
Definition algext.cc:1433
BOOLEAN n2pInitChar(coeffs cf, void *infoStruct)
Definition algext.cc:1687
#define BITSET
Definition auxiliary.h:85
void initPT()
void factoryseed(int s)
random seed initializer
Definition cf_random.cc:186
VAR void(* factoryError)(const char *s)
Definition cf_util.cc:80
Class used for (list of) interpreter objects.
Definition subexpr.h:83
VAR int siRandomStart
Definition cntrlc.cc:99
n_coeffType
Definition coeffs.h:27
@ n_polyExt
used to represent polys as coefficients
Definition coeffs.h:34
@ n_Q
rational (GMP) numbers
Definition coeffs.h:30
@ n_algExt
used for all algebraic extensions, i.e., the top-most extension in an extension tower is algebraic
Definition coeffs.h:35
@ n_Zn
only used if HAVE_RINGS is defined
Definition coeffs.h:44
@ n_transExt
used for all transcendental extensions, i.e., the top-most extension in an extension tower is transce...
Definition coeffs.h:38
@ n_Z
only used if HAVE_RINGS is defined
Definition coeffs.h:43
coeffs nInitChar(n_coeffType t, void *parameter)
one-time initialisations for new coeffs in case of an error return NULL
Definition numbers.cc:412
void feInitResources(const char *argv0)
VAR int myynest
Definition febase.cc:41
char * getenv()
EXTERN_VAR BBA_Proc gnc_gr_bba
Definition gb_hack.h:10
EXTERN_VAR BBA_Proc gnc_gr_mora
Definition gb_hack.h:10
EXTERN_VAR BBA_Proc sca_gr_bba
Definition gb_hack.h:10
EXTERN_VAR NF_Proc nc_NF
Definition gb_hack.h:9
EXTERN_VAR BBA_Proc sca_mora
Definition gb_hack.h:10
EXTERN_VAR BBA_Proc sca_bba
Definition gb_hack.h:10
ideal k_gnc_gr_bba(const ideal F, const ideal Q, const intvec *, const bigintmat *, kStrategy strat, const ring _currRing)
Definition gr_kstd2.cc:1030
ideal k_gnc_gr_mora(const ideal F, const ideal Q, const intvec *, const bigintmat *, kStrategy strat, const ring _currRing)
Definition gr_kstd2.cc:1283
int iiInitArithmetic()
initialisation of arithmetic structured data
Definition iparith.cc:9990
idhdl enterid(const char *s, int lev, int t, idhdl *root, BOOLEAN init, BOOLEAN search)
Definition ipid.cc:256
VAR package basePack
Definition ipid.cc:56
VAR package currPack
Definition ipid.cc:55
VAR idhdl currPackHdl
Definition ipid.cc:53
VAR idhdl basePackHdl
Definition ipid.cc:54
#define IDDATA(a)
Definition ipid.h:126
#define IDROOT
Definition ipid.h:19
#define IDPACKAGE(a)
Definition ipid.h:139
int iiAddCproc(const char *libname, const char *procname, BOOLEAN pstatic, BOOLEAN(*func)(leftv res, leftv v))
Definition iplib.cc:1073
BOOLEAN iiLibCmd(const char *newlib, BOOLEAN autoexport, BOOLEAN tellerror, BOOLEAN force)
Definition iplib.cc:894
STATIC_VAR Poly * h
Definition janet.cc:971
ideal k_sca_bba(const ideal F, const ideal Q, const intvec *, const bigintmat *, kStrategy strat, const ring _currRing)
Modified modern Sinuglar Buchberger's algorithm.
Definition sca.cc:368
ideal k_sca_gr_bba(const ideal F, const ideal Q, const intvec *, const bigintmat *, kStrategy strat, const ring _currRing)
Modified Plural's Buchberger's algorithmus.
Definition sca.cc:95
ideal k_sca_mora(const ideal F, const ideal Q, const intvec *, const bigintmat *, kStrategy strat, const ring _currRing)
Modified modern Sinuglar Mora's algorithm.
Definition sca.cc:878
poly k_NF(ideal F, ideal Q, poly p, int syzComp, int lazyReduce, const ring _currRing)
NOTE: this is just a wrapper which sets currRing for the actual kNF call.
Definition kstd1.cc:3444
static BOOLEAN iiCrossProd(leftv res, leftv args)
Definition misc_ip.cc:1331
void omSingOutOfMemoryFunc()
Definition misc_ip.cc:1204
static BOOLEAN iiFloat(leftv res, leftv pnn)
Definition misc_ip.cc:1302
static void callWerrorS(const char *s)
Definition misc_ip.cc:1365
void dErrorBreak(void)
Definition dError.cc:140
void nRegisterCfByName(cfInitCfByNameProc p, n_coeffType n)
Definition numbers.cc:631
n_coeffType nRegister(n_coeffType n, cfInitCharProc p)
Definition numbers.cc:590
#define omAlloc0(size)
omOpts_t om_Opts
Definition omOpts.c:13
VAR unsigned si_opt_2
Definition options.c:6
VAR unsigned si_opt_1
Definition options.c:5
#define SI_SAVE_OPT(A, B)
Definition options.h:20
#define Sy_bit(x)
Definition options.h:31
#define SI_RESTORE_OPT(A, B)
Definition options.h:23
VAR coeffs coeffs_BIGINT
Definition polys.cc:14
idrec * idhdl
Definition ring.h:22
coeffs nrnInitCfByName(char *s, n_coeffType)
Definition rmodulon.cc:33
VAR int siSeed
Definition sirandom.c:30
ip_package * package
Definition structs.h:39
INST_VAR sleftv sLastPrinted
Definition subexpr.cc:46
@ LANG_TOP
Definition subexpr.h:22
int startTimer()
Definition timer.cc:66
void initRTimer()
Definition timer.cc:136
@ CRING_CMD
Definition tok.h:56
@ PACKAGE_CMD
Definition tok.h:150
#define NONE
Definition tok.h:223
BOOLEAN ntInitChar(coeffs cf, void *infoStruct)
Initialize the coeffs object.
Definition transext.cc:2636
#define omInitInfo()
Definition xalloc.h:228

Variable Documentation

◆ FE_OPT_NO_SHELL_FLAG

EXTERN_VAR BOOLEAN FE_OPT_NO_SHELL_FLAG

Definition at line 48 of file tesths.cc.

◆ File_Log

EXTERN_VAR FILE* File_Log

Definition at line 47 of file tesths.cc.