diff options
author | Viktor TrĂ³n <viktor.tron@gmail.com> | 2018-10-02 02:49:08 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-02 02:49:08 +0800 |
commit | 2c8d5dec502bbf7dcbfe9c9e78085f37c5a41fc4 (patch) | |
tree | bb5ef2886fd27de5b5b2c33ccbdb70d26f7759cf | |
parent | b7bbe66b19fb19b95053977586e619a40478a7d8 (diff) | |
parent | 634e963f023fa453e41cb02ef8296fe15fe7a264 (diff) | |
download | dexon-2c8d5dec502bbf7dcbfe9c9e78085f37c5a41fc4.tar.gz dexon-2c8d5dec502bbf7dcbfe9c9e78085f37c5a41fc4.tar.zst dexon-2c8d5dec502bbf7dcbfe9c9e78085f37c5a41fc4.zip |
Merge pull request #17800 from ethersphere/disable_cmd_swarm_tests_on_win
cmd/swarm: disable export and upload tests on Windows
-rw-r--r-- | cmd/swarm/export_test.go | 2 | ||||
-rw-r--r-- | cmd/swarm/upload_test.go | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/cmd/swarm/export_test.go b/cmd/swarm/export_test.go index 525538ad7..20df7b060 100644 --- a/cmd/swarm/export_test.go +++ b/cmd/swarm/export_test.go @@ -14,6 +14,8 @@ // You should have received a copy of the GNU General Public License // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>. +// +build !windows + package main import ( diff --git a/cmd/swarm/upload_test.go b/cmd/swarm/upload_test.go index aba4d0dda..84205031b 100644 --- a/cmd/swarm/upload_test.go +++ b/cmd/swarm/upload_test.go @@ -14,6 +14,8 @@ // You should have received a copy of the GNU General Public License // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>. +// +build !windows + package main import ( |