Errors : 2
==>
1
2
Warnings: 0
NOTE: PROCEDURE PRINTTO used (Total process time): real time 0.04 seconds cpu time 0.03 seconds 121 proc datasets lib=test1 nolist kill; 122 quit; NOTE: PROCEDURE DATASETS used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 123 proc datasets lib=test2 nolist kill; 48 The SAS System 11:39 Friday, March 21, 20 124 quit; NOTE: PROCEDURE DATASETS used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 125 %generate(data=sashelp.class, by=sex, out=test3.class) MPRINT(GENERATE): data; MPRINT(GENERATE): run; NOTE: The data set WORK.DATA11 has 1 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds MPRINT(GENERATE): data; MPRINT(GENERATE): run; NOTE: The data set WORK.DATA12 has 1 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds MPRINT(GENERATE): proc sort data=sashelp.class out=WORK.DATA11; MPRINT(GENERATE): by sex; MPRINT(GENERATE): run; NOTE: There were 19 observations read from the data set SASHELP.CLASS. NOTE: The data set WORK.DATA11 has 19 observations and 5 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.00 seconds cpu time 0.00 seconds MPRINT(GENERATE): proc means noprint data=WORK.DATA11(keep=sex); MPRINT(GENERATE): by sex; MPRINT(GENERATE): output out=WORK.DATA12; MPRINT(GENERATE): run; NOTE: There were 19 observations read from the data set WORK.DATA11. NOTE: The data set WORK.DATA12 has 2 observations and 3 variables. NOTE: PROCEDURE MEANS used (Total process time): real time 0.00 seconds cpu time 0.00 seconds MPRINT(GENERATE): data _null_; MPRINT(GENERATE): set WORK.DATA12 nobs=count; MPRINT(GENERATE): call symput ("count", compress(put(count,8.))); MPRINT(GENERATE): stop; MPRINT(GENERATE): run; 49 The SAS System 11:39 Friday, March 21, 20 NOTE: There were 1 observations read from the data set WORK.DATA12. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds MPRINT(GENERATE): data _null_; MPRINT(GENERATE): set WORK.DATA12 end=eof; MPRINT(GENERATE): array t(1) $ 200 _temporary_; MPRINT(GENERATE): t(1) = 'Dataset for'; MPRINT(GENERATE): t(1) = trim(t(1)) !! " sex=" !! trim(left(vvalue(sex))); MPRINT(GENERATE): t(1) = trim(t(1)) !! ' (' !! compress(put(_freq_,8.)) !! ' observations)'; MPRINT(GENERATE): call symput ('label' !! compress(put(_n_,8.)), trim(t(1))); MPRINT(GENERATE): run; NOTE: There were 2 observations read from the data set WORK.DATA12. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds ERROR: Libname TEST3 is not assigned. ERROR: Libname TEST3 is not assigned. MPRINT(GENERATE): data test3.class1 (label="Dataset for sex=F (9 observations)") test3.class2 (label="Dataset for sex=M (10 observations)") ; MPRINT(GENERATE): set WORK.DATA11; MPRINT(GENERATE): by sex; MPRINT(GENERATE): array t(1) _temporary_; MPRINT(GENERATE): if first.sex then t(1)+1; MPRINT(GENERATE): select(t(1)); MPRINT(GENERATE): when(1) output test3.class1; MPRINT(GENERATE): when(2) output test3.class2; MPRINT(GENERATE): end; MPRINT(GENERATE): run; NOTE: The SAS System stopped processing this step because of errors. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds MPRINT(GENERATE): proc datasets lib=work nolist; MPRINT(GENERATE): delete DATA11 DATA12; MPRINT(GENERATE): quit; NOTE: Deleting WORK.DATA11 (memtype=DATA). NOTE: Deleting WORK.DATA12 (memtype=DATA). NOTE: PROCEDURE DATASETS used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 126 %endTestcall() 50 The SAS System 11:39 Friday, March 21, 20 MPRINT(ENDTESTCALL): PROC PRINTTO LOG="c:\.jenkins\jobs\SASUnit Build Release ZIP-File\workspace\v1.3\example\doc\sasunit\en/log/003.log" PRINT="c:\.jenkins\jobs\SASUnit Build Release ZIP-File\workspace\v1.3\example\doc\sasunit\en/tst/003.lst" ; MPRINT(ENDTESTCALL): RUN;