maeSetJobPolicy
maeSetJobPolicy (g_jobPolicyDPL[?testNamet_testName] [?jobTypet_jobType] [?sessiont_sessionName] ) => t / nil
Description
Sets the given job policy to the specified setup for the given test.
Arguments
|
A distributed property list that can provide values for multiple properties of a job policy. |
||
Value Returned
|
The given job policy is set for the specified setup for the given test. |
||
Examples
Updates the default global job policy in the current maestro session to change the value of the pointlifetime property:
jp = maeGetJobPolicy()
jp->pointlifetime=1
maeSetJobPolicy(jp)
Updates the netlisting job policy for test test1:
jp = maeGetJobPolicy(?jobType "netlisting" ?testName "test1")
jp->pointlifetime=1
maeSetJobPolicy(jp)
Return to top