26 v=cats(dq,
"'=the formula with leading apostrophe",dq);
27 call symputx(
'quoteval',v);
30filename testprog temp;
34 /
' x=symget("quoteval");'
35 /
' put "received: " x;'
40%mv_createjob(path=&mcTestAppLoc,name=quotejob,code=testprog)
43 _contextName=
"&mcTestContext";
44 _program=
"&mcTestAppLoc/quotejob";
45 quoteval=symget(
'quoteval');
50%mv_jobflow(inds=work.inputjobs
60 desc=Checking the flow runs when a parameter value has an odd number of quotes
64 infile myjoblog end=eof;
67 if index(_infile_,
"the formula with leading apostrophe") then found=1;
68 if eof then call symputx('foundval',found);
73 desc=Checking the parameter value arrived in the child job