24 desc=Checking result was created,
25 outds=work.test_results
30 length test_result $5 test_description $256 test_comments $256;
32 test_description='Checking a 5 character status survives the append';
33 test_comments='Simulates a downstream package appending to the results';
36proc append base=work.test_results data=work.append_test;
47 set work.test_results;
48 if test_result='CHECK' then do;
49 call symputx('checkval',test_result);
50 call symputx('checklen',lengthc(test_result));
55 iftrue=("&checkval"="CHECK"),
56 desc=Checking a 5 character status is not refused by the append
61 desc=Checking the results column holds a 5 character status