verifSetImpData
verifSetImpData(g_sessionId t_libName t_cellName t_viewName t_historyName g_data[?runNamet_runName ] [?relNamet_relName ] [?testNamet_testName ] [?outputNamet_outputName ] [?statNamet_statName ] ) => t / nil
Description
Sets the specified data for a given implementation item.
Arguments
|
Integer, string number, or window specifying the Verifier session ID. For example, |
|
|
List of key or value pairs that must be set on the resulting output. |
|
Value Returned
Examples
The following example shows how to set the data for an implementation item.
sess = verifOpenCellView("test" "sample" "verifier")
=> 0
Changes the specification and units for the output.
verifSetImpData(sess "lib" "cell" "view" "Active" '("spec" "> 45" "unit" "V") ?testName "Test1" ?outputName "Gain")
Displays an error because the implementation name cannot be changed.
verifSetImpData(sess "lib" "cell" "view" "Active" '("name" "abc"))
Sets the custom implementation data for an exiting output.
verifSetImpData(sess "l" "c" "v" "h" list("details" "45" "unit" "V" "spec" "> 45") ?testName "test" ?outputName "output")
Related Topics
Return to top