@@ -394,14 +394,29 @@ nerdtest.Soci // a test requires the soci snapshotter
394394nerdtest.Stargz // a test requires the stargz snapshotter
395395nerdtest.Rootless // a test requires Rootless
396396nerdtest.Rootful // a test requires Rootful
397+ nerdtest.RootlessWithDetachNetNS // a test requires rootless with detached netns (RootlessKit v2)
398+ nerdtest.RootlessWithoutDetachNetNS // a test requires rootless without detached netns (RootlessKit v1)
397399nerdtest.Build // a test requires buildkit
398400nerdtest.CGroup // a test requires cgroup
401+ nerdtest.CgroupsAccessible // a test requires cgroup; passes if rootful, or rootless with cgroup v2
402+ nerdtest.CGroupV2 // a test requires cgroup v2
399403nerdtest.NerdctlNeedsFixing // indicates that a test cannot be run on nerdctl yet as a fix is required
400404nerdtest.BrokenTest // indicates that a test needs to be fixed and has been restricted to run only in certain cases
401405nerdtest.OnlyIPv6 // a test is meant to run solely in the ipv6 environment
402406nerdtest.OnlyKubernetes // a test is meant to run solely in the Kubernetes environment
403407nerdtest.IsFlaky // indicates that a test will fail in a flaky way - this may be the test fault, or more likely something racy in nerdctl
404408nerdtest.Private // see below
409+ nerdtest.Registry // a test requires a registry to be deployed
410+ nerdtest.IPFS // a test requires ipfs (binary present)
411+ nerdtest.Gomodjail // a test requires the target binary to be packed with gomodjail
412+ nerdtest.AllowModifyUserns // a test requires allow-modify-userns to be enabled
413+ nerdtest.RemapIDs // a test requires snapshotter to support ID remapping
414+ nerdtest.HyperV // a test requires Hyper-V (Windows)
415+
416+ nerdtest.Info (func (info dockercompat.Info ) error { ... }) // `nerdctl info` should satisfy custom conditions
417+ nerdtest.SociVersion (" 0.10.0" ) // SOCI snapshotter version check
418+ nerdtest.ContainerdVersion (" 2.0.0" ) // containerd version check
419+ nerdtest.CNIFirewallVersion (" 1.7.1" ) // CNI firewall plugin version check
405420```
406421
407422### About ` nerdtest.Private `
0 commit comments