Chinaunix首页 | 论坛 | 博客
  • 博客访问: 7094388
  • 博文数量: 3857
  • 博客积分: 6409
  • 博客等级: 准将
  • 技术积分: 15948
  • 用 户 组: 普通用户
  • 注册时间: 2008-09-02 16:48
个人简介

迷彩 潜伏 隐蔽 伪装

文章分类

全部博文(3857)

文章存档

2017年(5)

2016年(63)

2015年(927)

2014年(677)

2013年(807)

2012年(1241)

2011年(67)

2010年(7)

2009年(36)

2008年(28)

分类: LINUX

2013-03-26 22:20:05

在red hat 5.5编译go时,出现以下错误:
--- FAIL: TestExtraFiles (1.09 seconds)
exec_test.go:158:       Something already leaked - closed fd 3
exec_test.go:211:       CombinedOutput: exit status 1; output "leaked parent file. fd = 14; want 11\nCOMMAND     PID USER   FD   TYPE DEVICE    SIZE      NODE NAME\nexec.test 31024 root  cwd    DIR   8,22    4096 110724769 /data/work/ygx/go/go/src/pkg/os/exec\nexec.test 31024 root  rtd    DIR   8,17    4096         2 /\nexec.test 31024 root  txt    REG   8,17 4570053    195546 /tmp/go-build133955033/os/exec/_test/exec.test\nexec.test 31024 root  mem    REG   8,17  139416    130612 /lib64/ld-2.5.so\nexec.test 31024 root  mem    REG   8,17 1717800    130613 /lib64/libc-2.5.so\nexec.test 31024 root  mem    REG   8,17  145824    130618 /lib64/libpthread-2.5.so\nexec.test 31024 root    0r   CHR    1,3              2708 /dev/null\nexec.test 31024 root    1w  FIFO    0,6          68413991 pipe\nexec.test 31024 root    2w  FIFO    0,6          68413991 pipe\nexec.test 31024 root    3u   REG   8,17      12   5179634 /tmp/756310392\nexec.test 31024 root    4r   REG   8,17 4570053    195546 /tmp/go-build133955033/os/exec/_test/exec.test\nexec.test 31024 root    5r   REG   8,17 4570053    195546 /tmp/go-build133955033/os/exec/_test/exec.test\nexec.test 31024 root    6r   REG   8,17 4570053    195546 /tmp/go-build133955033/os/exec/_test/exec.test\nexec.test 31024 root    7r   REG   8,17 4570053    195546 /tmp/go-build133955033/os/exec/_test/exec.test\nexec.test 31024 root    8r   REG   8,17 4570053    195546 /tmp/go-build133955033/os/exec/_test/exec.test\nexec.test 31024 root    9r   REG   8,17 4570053    195546 /tmp/go-build133955033/os/exec/_test/exec.test\nexec.test 31024 root   10r   REG   8,17 4570053    195546 /tmp/go-build133955033/os/exec/_test/exec.test\nexec.test 31024 root   11r   CHR    1,3              2708 /dev/null\nexec.test 31024 root   12r   CHR    1,9              1359 /dev/urandom\nexec.test 31024 root   13u   REG   8,17      12   5179634 /tmp/756310392\nexec.test 31024 root   14r   REG   8,17 4570053    195546 /tmp/go-build133955033/os/exec/_test/exec.test\nexec.test 31024 root   16r  FIFO    0,6          68414002 pipe\n"


解决:
找到源码文件
zerrors_linux_amd64.go:625:     O_CLOEXEC                        = 0x80000
修改为
zerrors_linux_amd64.go:625:     O_CLOEXEC                        = 0x0
参考:


阅读(1057) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~