Coverage report: /home/ellis/comp/core/lib/pod/obj/container.lisp
Kind | Covered | All | % |
expression | 0 | 4 | 0.0 |
branch | 0 | 0 | nil |
Key
Not instrumented
Conditionalized out
Executed
Not executed
Both branches taken
One branch taken
Neither branch taken
1
;;; container.lisp --- OCI Container Objects
9
(defclass live-container (id)
10
(app-armor-profile args bounding-caps config common-pid-file created
11
dependencies driver effective-caps exec-ids exit-command graph-driver
12
host-config hostname-path hosts-path image image-name is-infra mount-label
13
mounts name namespace network-settings oci-config-path oci-runtime path pod
14
process-label resolv-conf-path restart-count rootfs size-root-fs size-rw state static-dir)
15
(:documentation "A container in the Podman runtime environment."))
17
(defclass build-container (id)
18
(builder imageid imagename containername)
19
(:documentation "A container in the Buildah OCI environment."))
22
;; https://github.com/containers/common/blob/main/pkg/hooks/docs/oci-hooks.5.md
23
(defclass container-hook (json-object) ())