mirror of
https://github.com/sasjs/core.git
synced 2025-12-15 16:14:36 +00:00
29 lines
485 B
SAS
29 lines
485 B
SAS
/**
|
|
@file
|
|
@brief init file for tests
|
|
|
|
<h4> SAS Macros </h4>
|
|
@li mp_init.sas
|
|
@li mv_webout.sas
|
|
|
|
**/
|
|
|
|
/* location in metadata or SAS Drive for temporary files */
|
|
%let mcTestAppLoc=/Public/temp/macrocore;
|
|
|
|
/* set defaults */
|
|
%mp_init()
|
|
|
|
%global _debug;
|
|
|
|
%macro loglevel();
|
|
%if "&_debug"="2477" or "&_debug"="fields,log,trace" %then %do;
|
|
%put debug mode activated;
|
|
options mprint mprintnest;
|
|
%end;
|
|
%mend loglevel;
|
|
|
|
%loglevel()
|
|
|
|
%put Initialised &_program;
|
|
%put _all_; |