1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-27 22:36:12 -04:00

skip test requires root permission

This commit is contained in:
v2ray 2016-08-16 09:01:58 +02:00
parent 9876844296
commit 41d89e6d1e
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
2 changed files with 5 additions and 2 deletions

View File

@ -3,8 +3,6 @@ language: go
go:
- 1.7
sudo: required
git:
depth: 5

View File

@ -3,6 +3,7 @@
package udp_test
import (
"os"
"syscall"
"testing"
@ -16,6 +17,10 @@ import (
func TestHubSocksOption(t *testing.T) {
assert := assert.On(t)
if os.Geteuid() != 0 {
// This test case requires root permission.
return
}
hub, err := ListenUDP(v2net.LocalHostIP, v2net.Port(0), ListenOption{
Callback: func(*alloc.Buffer, *proxy.SessionInfo) {},