Lines Matching refs:pkg
22 "fotff/pkg"
38 func FindOutTheFirstFail(m pkg.Manager, t tester.Tester, testCase string, successPkg string, failPkg string, fellows ...string) (string, error) {
53 func findOutTheFirstFail(m pkg.Manager, t tester.Tester, testcase string, steps []string, fellows ...string) (string, error) {
131 func flashAndTest(m pkg.Manager, t tester.Tester, pkg string, testcase string, ctx context.Context, fellows ...string) (bool, []string, error) {
133 if result, found := utils.CacheGet("testcase_result", testcase+"__at__"+pkg); found {
136 if fellowResult, fellowFound := utils.CacheGet("testcase_result", fellow+"__at__"+pkg); fellowFound {
148 if err := m.Flash(device, pkg, ctx); err != nil && !errors.Is(err, context.Canceled) {
151 if err = t.Prepare(m.PkgDir(pkg), device, ctx); err != nil {
165 utils.CacheSet("testcase_result", result.TestCaseName+"__at__"+pkg, result)