File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ function target()
7878 env PATH=$GOROOT /bin:$PATH $SOURCEDIR /hack/cri-test/test-cri.sh
7979 ;;
8080 integration-test)
81- docker run --rm -v $( pwd) :$SOURCEDIR $IMAGE bash -c " cd test && go test -c -o integration-test"
81+ # docker run --rm -v $(pwd):$SOURCEDIR $IMAGE bash -c "cd test && go test -c -o integration-test"
8282
8383 if [[ $SOURCEDIR != $DIR ]]; then
8484 [ -d $SOURCEDIR ] && rm -rf $SOURCEDIR
@@ -118,7 +118,8 @@ function target()
118118 pouch version
119119
120120 # If test is failed, print pouch daemon log.
121- $DIR /test/integration-test -check.v || { echo " pouch daemon log:" ; cat $TMP /log; return 1; }
121+ # $DIR/test/integration-test -check.v || { echo "pouch daemon log:"; cat $TMP/log; return 1; }
122+ cd $DIR /test; go test -check.f PouchDaemonSuite -check.v || { echo " pouch daemon log:" ; cat $TMP /log; return 1; }
122123 ;;
123124 * )
124125 echo " no such target: $target "
You can’t perform that action at this time.
0 commit comments