openconfig / featureprofiles

Feature Profiles are groups of OpenConfig paths and tests which verify their behavior
Apache License 2.0
51 stars 147 forks source link

gribigo_compliance_test.go #235

Closed cprabha closed 2 years ago

cprabha commented 2 years ago

Hi,

I am trying to execute "gribigo_compliance_test.go" . Its timing out after 10minutes (panic timeout), could not see gribi client configured. I am wondering if we need to do any preconfig for this test. Please could you help.

=== RUN TestCompliance/Modify_RPC_connection panic: test timed out after 10m0s

Debugging further shows test lands at below code and times out: (testing.go file , line 1307)

if !<-t.signal { // At this point, it is likely that FailNow was called on one of the // parent tests by one of the subtests. Continue aborting up the chain. runtime.Goexit() } return !t.failed

Thanks, Prabha

Hobbydos commented 2 years ago

@cprabha I was able to run the suite, I just needed the gRIBI protocol running on the NI. I found that debugging delve helped in understanding why the failures happen. I'm using it with VSCode.

cprabha commented 2 years ago

Thank you. I will run it in debug mode and verify it.