1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-17 05:20:05 +00:00

chore: automated commit

This commit is contained in:
Allan Bowe
2021-05-11 23:36:40 +03:00
parent 5cee93c7bd
commit 2fa9e48286

View File

@@ -19,6 +19,7 @@
filename testref temp; filename testref temp;
data _null_; data _null_;
file testref; file testref;
put 'data;run;';
put 'endsas;'; put 'endsas;';
run; run;
%mv_createjob( %mv_createjob(
@@ -52,10 +53,15 @@ run;
data _null_; data _null_;
infile mylog; infile mylog end=eof;
input; input;
if index(_infile_,'endsas;') then call symputx('found',1); putlog _infile_;
else call symputx('found',0); retain found 0;
if index(_infile_,'endsas;') then do;
found=1;
call symputx('found',found);
end;
else if eof and found ne 1 then call symputx('found',0);
run; run;
%mp_assert( %mp_assert(