1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-03 15:40: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;
data _null_;
file testref;
put 'data;run;';
put 'endsas;';
run;
%mv_createjob(
@@ -52,10 +53,15 @@ run;
data _null_;
infile mylog;
infile mylog end=eof;
input;
if index(_infile_,'endsas;') then call symputx('found',1);
else call symputx('found',0);
putlog _infile_;
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;
%mp_assert(