diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-02-06 21:03:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-06 21:03:20 +0100 |
commit | 55dc783298875878ff080858fbd0e9d286d30794 (patch) | |
tree | a9cfd7b20c4204f61188be177527b2b5daf00da3 /Makefile | |
parent | 9644802cd7e860aa876559cfa6e574030abada54 (diff) | |
parent | aa881a0c7110de5104f7eb85e7f9210db84f45d8 (diff) | |
download | podman-55dc783298875878ff080858fbd0e9d286d30794.tar.gz podman-55dc783298875878ff080858fbd0e9d286d30794.tar.bz2 podman-55dc783298875878ff080858fbd0e9d286d30794.zip |
Merge pull request #2284 from edsantiago/gomega_cleanup
Makefile: minor fix to reenable system tests
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -85,7 +85,7 @@ help: .gopathok: ifeq ("$(wildcard $(GOPKGDIR))","") mkdir -p "$(GOPKGBASEDIR)" - ln -s "$(CURDIR)" "$(GOPKGBASEDIR)" + ln -sf "$(CURDIR)" "$(GOPKGBASEDIR)" endif touch $@ @@ -182,10 +182,10 @@ ginkgo-remote: localintegration: varlink_generate test-binaries ginkgo ginkgo-remote -localsystem: .install.ginkgo .install.gomega +localsystem: .install.ginkgo ginkgo -v -noColor test/system/ -system.test-binary: .install.ginkgo .install.gomega +system.test-binary: .install.ginkgo $(GO) test -c ./test/system perftest: |