Quantcast
Channel: IBM Mainframe Computers Forums
Viewing all articles
Browse latest Browse all 8500

JCL & VSAM :: RE: How to supply called sub-program from test loadlib

$
0
0
Author: steve-myers
Posted: Thu Sep 15, 2016 7:37 pm (GMT 5.5)

Code:
//JOBLIB   DD DSN=SYS5.TESTLIB,DISP=SHR
//         DD DSN=SYS4.STAGING,DISP=SHR
//*
//P474O200 PROC
//STEPO200 EXEC PGM=S474O200
//STEPLIB  DD DSN=SYS5.TESTLIB,DISP=SHR
//         DD DSN=SYS4.STAGING,DISP=SHR

Since the JOBLIB and STEPLIB appear to be identical, the run may not be testing anything. Perhaps this is closer to what you want -
Code:
//JOBLIB   DD DSN=SYS4.STAGING,DISP=SHR
//*
//P474O200 PROC
//STEPO200 EXEC PGM=S474O200
//STEPLIB  DD DSN=SYS5.TESTLIB,DISP=SHR
//         DD DSN=SYS4.STAGING,DISP=SHR


HTH


Viewing all articles
Browse latest Browse all 8500

Trending Articles