Lines Matching refs:pkg
34 import pkg.fmri as fmri
47 """ pkg bogus option checks """
52 self.pkg("uninstall -@ foo", exit=2)
53 self.pkg("uninstall -vq foo", exit=2)
54 self.pkg("uninstall", exit=2)
55 self.pkg("uninstall foo@x.y", exit=1)
56 self.pkg("uninstall pkg:/foo@bar.baz", exit=1)
70 self.pkg("install foo")
72 self.pkg("uninstall foo")
98 self.pkg("install bazb")
99 self.pkg("verify")
100 self.pkg("uninstall foob", exit=1)
101 self.pkg("uninstall bazb foob barb")
102 self.pkg("verify")
111 add set name=pkg.renamed value=true
127 in its removal from the output of pkg list -a, even if it has
133 self.pkg("install -v renamed holder")
134 self.pkg("verify")
135 self.pkg("set-publisher -P -g {0} bogus".format(self.rurl2))
136 self.pkg("unset-publisher test")
137 self.pkg("info quux@1.0 renamed@1.0")
138 self.pkg("uninstall holder renamed")
139 self.pkg("list -a renamed@1.0", exit=1)
140 self.pkg("uninstall quux")
141 self.pkg("list -a quux@1.0", exit=1)
156 self.pkg("install implicit")
157 self.pkg("uninstall implicit")
184 self.pkg("install quux")
188 self.pkg("uninstall -nv quux")
193 self.pkg("unset-publisher test")
194 self.pkg("uninstall -nv quux", exit=1)
201 self.pkg("set-publisher test")
202 self.pkg("uninstall -nv quux", exit=1)
210 self.pkg("uninstall missing", exit=1)
211 self.pkg("uninstall --ignore-missing missing", exit=4)