verifSetSnapshotConfiguration
verifSetSnapshotConfiguration(
g_sessionId
t_configName
)
=> t / nil
Description
Saves the current Show list configuration with the specified name and filters the Snapshots tab items with the specified configuration.
Arguments
|
Integer, string number, or window specifying the Verifier session ID. For example, |
|
Value Returned
|
Snapshot configuration does not exist or command is unsuccessful. |
Examples
The following example opens a Verifier session with a cellview 'test/snapshots/verifier' and sets the current snapshot configuration.
uid = verifOpenCellView("test" "snapshots" "verifier")
=> 0
Sets the current snapshot configuration to diff.
verifSetSnapshotConfiguration(uid "diff")
=> t
Sets the current snapshot configuration to a non-existent one.
verifSetSnapshotConfiguration(uid "config")
*WARNING* (VERIFIER-5006): verifSetSnapshotConfiguration : Cannot set current snapshot configuration to 'config' as it does not exist in the current session or it is already the current configuration.
=> nil
Related Topics
verifCreateSnapshotConfiguration
verifDeleteSnapshotConfiguration
Return to top