Unverified Commit 750115ff authored by meowsbits's avatar meowsbits Committed by GitHub

p2p/nat: skip TestUPNP in non-CI environments if discover fails (#22877)

Fixes #21476
......@@ -21,6 +21,7 @@ import (
"io"
"net"
"net/http"
"os"
"runtime"
"strings"
"testing"
......@@ -162,7 +163,11 @@ func TestUPNP_DDWRT(t *testing.T) {
// Attempt to discover the fake device.
discovered := discoverUPnP()
if discovered == nil {
t.Fatalf("not discovered")
if os.Getenv("CI") != "" {
t.Fatalf("not discovered")
} else {
t.Skipf("UPnP not discovered (known issue, see https://github.com/ethereum/go-ethereum/issues/21476)")
}
}
upnp, _ := discovered.(*upnp)
if upnp.service != "IGDv1-IP1" {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment