Add node e2e test CI.

Signed-off-by: Lantao Liu <lantaol@google.com>
This commit is contained in:
Lantao Liu
2017-08-20 07:36:55 +00:00
parent dcc3cb2a05
commit c05a7e74ee
12 changed files with 166 additions and 79 deletions

View File

@@ -27,10 +27,10 @@ import (
// ListContainers lists all containers matching the filter.
func (c *criContainerdService) ListContainers(ctx context.Context, r *runtime.ListContainersRequest) (retRes *runtime.ListContainersResponse, retErr error) {
glog.V(4).Infof("ListContainers with filter %+v", r.GetFilter())
glog.V(5).Infof("ListContainers with filter %+v", r.GetFilter())
defer func() {
if retErr == nil {
glog.V(4).Infof("ListContainers returns containers %+v", retRes.GetContainers())
glog.V(5).Infof("ListContainers returns containers %+v", retRes.GetContainers())
}
}()