Searched refs:TestCaseName (Results 1 – 12 of 12) sorted by relevance
| /developtools/integration_verification/tools/fotff/rec/ |
| D | record.go | 69 …f("recording [%s] as a success, the lastest success package is [%s]", result.TestCaseName, pkgName) 70 Records[result.TestCaseName] = Record{ 83 if record, ok := Records[result.TestCaseName]; ok && record.Status != tester.ResultPass { 84 logrus.Warnf("test case %s had failed before, skip handle it", result.TestCaseName) 89 r, err := t.DoTestCase(dev, result.TestCaseName, context.TODO()) 91 logrus.Errorf("failed to do test case %s: %v", result.TestCaseName, err) 94 logrus.Infof("do testcase %s at %s done, result is %s", r.TestCaseName, dev, r.Status) 96 logrus.Warnf("testcase %s result is %s", r.TestCaseName, tester.ResultOccasionalFail) 101 …tus == tester.ResultFail && Records[result.TestCaseName].LatestSuccessPkg != "" && Records[result.… 102 fotffTestCases = append(fotffTestCases, result.TestCaseName) [all …]
|
| D | fotff.go | 134 …case result %s from cache done, result is %s", result.(tester.Result).TestCaseName, result.(tester… 137 …esult %s from cache done, result is %s", fellowResult.(tester.Result).TestCaseName, fellowResult.(… 161 …logrus.Infof("do testcase %s at %s done, result is %s", result.TestCaseName, device, result.Status) 162 if result.TestCaseName == testcase { 165 utils.CacheSet("testcase_result", result.TestCaseName+"__at__"+pkg, result) 168 if result.TestCaseName != testcase && result.Status == testcaseStatus { 169 newFellows = append(newFellows, result.TestCaseName)
|
| D | fotff_test.go | 79 return []tester.Result{{TestCaseName: f.TestCaseName(), Status: tester.ResultFail}}, nil 95 return tester.Result{TestCaseName: testcase, Status: tester.ResultFail}, nil 98 return tester.Result{TestCaseName: testcase, Status: tester.ResultPass}, nil 143 func (f *FotffMocker) TestCaseName() string { func 289 …ret, err := FindOutTheFirstFail(tt.mocker, tt.mocker, tt.mocker.TestCaseName(), "0", tt.mocker.Las…
|
| D | flashandtest.go | 45 logrus.Infof("Result for test case %s is %s", r.TestCaseName, r.Status)
|
| /developtools/integration_verification/tools/fotff/tester/mock/ |
| D | mock.go | 43 {TestCaseName: "TEST_001", Status: tester.ResultPass}, 44 {TestCaseName: "TEST_002", Status: tester.ResultPass}, 45 {TestCaseName: "TEST_003", Status: tester.ResultPass}, 51 return tester.Result{TestCaseName: testCase, Status: tester.ResultPass}, nil
|
| /developtools/integration_verification/tools/fotff/tester/smoke/ |
| D | smoke.go | 100 if r[0].TestCaseName != testCase { 103 logrus.Infof("do testcase %s at %s done, result is %s", r[0].TestCaseName, deviceSN, r[0].Status) 133 TestCaseName int `json:"test_case_name"` 143 …ret = append(ret, tester.Result{TestCaseName: strconv.Itoa(r.TestCaseName), Status: tester.ResultP… 145 …ret = append(ret, tester.Result{TestCaseName: strconv.Itoa(r.TestCaseName), Status: tester.ResultF…
|
| /developtools/integration_verification/tools/fotff/tester/pkg_available/ |
| D | pkg_available.go | 60 return tester.Result{TestCaseName: testCase, Status: tester.ResultFail}, nil 65 return tester.Result{TestCaseName: testCase, Status: tester.ResultPass}, nil 69 return tester.Result{TestCaseName: testCase, Status: tester.ResultFail}, nil
|
| /developtools/integration_verification/tools/fotff/tester/manual/ |
| D | manual.go | 71 return tester.Result{TestCaseName: testCase, Status: tester.ResultPass}, nil 73 return tester.Result{TestCaseName: testCase, Status: tester.ResultFail}, nil
|
| /developtools/integration_verification/tools/fotff/tester/common/ |
| D | common.go | 97 if rs[0].TestCaseName != testCase { 144 ret = append(ret, tester.Result{TestCaseName: r.TestCase, Status: tester.ResultPass}) 146 ret = append(ret, tester.Result{TestCaseName: r.TestCase, Status: tester.ResultFail})
|
| /developtools/integration_verification/tools/fotff/tester/xdevice/ |
| D | xdevice.go | 115 if r[0].TestCaseName != testCase { 118 logrus.Infof("do testcase %s at %s done, result is %s", r[0].TestCaseName, deviceSN, r[0].Status) 158 ret = append(ret, tester.Result{TestCaseName: c.Name, Status: status})
|
| /developtools/integration_verification/tools/fotff/tester/ |
| D | tester.go | 29 TestCaseName string member
|
| /developtools/integration_verification/tools/fotff/ |
| D | main.go | 171 logrus.Infof("do test case %s at %s done, result is %v", r.TestCaseName, device, r.Status)
|