verifSetImpSetPreRunScript
verifSetImpSetPreRunScript(
g_sessionId
t_impSetName
t_preRunScriptFileName
)
=> t / nil
Description
Sets the specified pre-run script file name for an implementation set.
Arguments
|
Integer, string number, or window specifying the Verifier session ID. For example, |
|
|
File name of the pre-run script attached to an implementation set. |
|
Value Returned
|
The pre-run script for the given implementation set is specified successfully. |
|
|
Implementation does not exist in the Verifier session, or the command is not successful. |
Examples
The following example starts a Verifier session with a cellview and sets the pre-run script for an implementation set.
uid = verifOpenCellView("test" "pre-run" "verifier")
=>0
verifSetImpSetPreRunScript(uid "Weekly" "prerun.il")
=>t
Returns nil if the pre-run script file does not exist.
verifSetImpSetPreRunScript(uid "Weekly" "abc.il")
*WARNING* (VERIFIER-1368): The pre-run script file 'abc.il' for implementation set 'Weekly' does not exist.
Either update the path to the script, or ensure that the script exists in the location before running this implementation set.
=>nil
Related Topics
Return to top