verifDeleteSnapshotConfiguration
verifDeleteSnapshotConfiguration(
g_sessionId
t_configName
)
=> t / nil
Description
Deletes the snapshot configuration with the specified name.
Arguments
|
Integer, string number, or window specifying the Verifier session ID. For example, |
|
Value Returned
|
Snapshot configuration is deleted successfully in the specified Verifier session. |
|
|
Snapshot configuration does not exist or the command is not successful. |
Examples
The following example starts a Verifier session with a cellview 'test/snapshots/verifier' and deletes the snapshot configuration.
uid = verifOpenCellView("test" "snapshots" "verifier")
=> 0
Deletes the snapshot configuration 'diff'.
verifDeleteSnapshotConfiguration(uid "diff")
=> t
Deletes a nonexistent snapshot configuration.
verifDeleteSnapshotConfiguration(uid "config")
*WARNING* (VERIFIER-5006): verifDeleteSnapshotConfiguration : Cannot delete snapshots configuration 'config' as it does not exist in the current session.
=> nil
Related Topics
verifCreateSnapshotConfiguration
Return to top