From 9d342ff0ee702dbc8b81f414db07f0652a16825e Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 26 Jun 2026 11:26:22 +0000 Subject: [PATCH] chore: updating all.sas --- all.sas | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/all.sas b/all.sas index dd0cf2d..7d80c32 100644 --- a/all.sas +++ b/all.sas @@ -3474,7 +3474,7 @@ run; )/*/STORE SOURCE*/; data ; - length test_description $256 test_result $4 test_comments $256; + length test_result $4 test_description $256 test_comments $256; test_description=symget('desc'); test_comments="&sysmacroname: Test result of "!!symget('iftrue'); %if %eval(%unquote(&iftrue)) %then %do; @@ -3602,7 +3602,7 @@ run; %end; data; - length test_description $256 test_result $4 test_comments $256; + length test_result $4 test_description $256 test_comments $256; test_description=symget('desc'); if test_description='0' then test_description="Testing &inds for existence of &test of: &cols"; @@ -3781,7 +3781,7 @@ run; ) data; - length test_description $256 test_result $4 test_comments $256; + length test_result $4 test_description $256 test_comments $256; test_description=symget('desc'); test_result='FAIL'; test_comments="&sysmacroname: &lib..&ds..&col has &result/&orig values " @@ -3896,7 +3896,7 @@ run; %end; data &ds; - length test_description $256 test_result $4 test_comments $256; + length test_result $4 test_description $256 test_comments $256; test_description=symget('desc'); test_result='FAIL'; test_comments="&sysmacroname: Dataset &inds has &nobs observations."; @@ -4060,7 +4060,7 @@ run; data ; - length test_description $256 test_result $4 test_comments $256; + length test_result $4 test_description $256 test_comments $256; test_description=symget('desc'); test_comments=symget('test_comments'); test_result=symget('test_result'); @@ -10078,6 +10078,7 @@ filename &tempref clear; %global SASJS_PREFIX /* the ONLY hard-coded global macro variable in SASjs */ + &prefix.PROCESSMODE &prefix._STPSRV_HEADER_LOC /* SASjs server specific vars*/ &prefix._FUNCTIONS /* used in mcf_init() to track core function compilation */ &prefix._INIT_NUM /* initialisation time as numeric */ &prefix._INIT_DTTM /* initialisation time in E8601DT26.6 format */ @@ -26427,7 +26428,8 @@ libname &libref1a JSON fileref=&fname1a; %let found=0; /* %put Getting object uri from &libref1a..items; */ data _null_; - length contenttype name $1000; + length contenttype name uri $1000; + call missing(of _all_); set &libref1a..items; if contenttype='jobDefinition' and upcase(name)="%upcase(&name)" then do; call symputx('uri',cats("&base_uri",uri),'l');