verifSetVManager
verifSetVManager(g_sessionId?usernameg_username?passwordg_password?hostnameg_hostname?portg_port?projectg_project?timeoutg_timeout?vPlang_vPlan?enabledg_enabled?actiont_action) => t / nil
Description
Configures or updates the vManager settings within the specified Verifier session.
Arguments
Value Returned
Examples
The following example starts a Verifier session with vManager setup and modifies the vManager settings.
uid = verifOpenCellView("amsPLL" "TOP_verification" "verification")
INFO (VERIFIER-9008): Successfully downloaded from vm-verifier-team.8080 /tmp/myPlan.vplanx.
INFO (VERIFIER-8215): Started Verifier session '0'.
=> 0
verifSetVManager(uid ?enabled nil)
=>t
verifIsVManagerEnabled(uid)
=> nil
Creates a new Verifier cellview and configures the vManager settings.
win = deNewCellView("amsPLL" "TOP_verification" "verifier" "verifier" nil)
INFO (VERIFIER-8215): Started Verifier session '2'.
window:4
uid = win->verifSession
=> 2
verifSetVManager(uid ?username "vmgr" ?password "***" ?hostname "vm-verifier-team" ?port 8080 ?vPlan "/tmp/myPlan.vplanx" ?enabled t)
INFO (VERIFIER-9008): Successfully downloaded from vm-verifier-team.8080 /tmp/myPlan.vplanx.
=> t
verifSetVManager(uid ?username "new-user" ?password "newPassword")
INFO (VERIFIER-9008): Successfully downloaded from vm-verifier-team.8080 /tmp/myPlan.vplanx.
=> t
Related Topics
Return to top