Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Makefile:71: recipe for target 'localunittest' failed make: *** [localunittest] Error 1 #1713

Closed
binchenX opened this issue Feb 6, 2018 · 6 comments

Comments

@binchenX
Copy link
Contributor

binchenX commented Feb 6, 2018

Step to reproduce:

  1. checkout runc, with commit

6c55f98

  1. build and install runc
make BUILDTAGS='seccomp apparmor'
sudo make install

All good.

  1. run unittest
make unitttest

--- PASS: TestResolveRootfs (0.00s)
=== RUN TestResolveRootfsWithSymlink
--- PASS: TestResolveRootfsWithSymlink (0.00s)
=== RUN TestResolveRootfsWithNonExistingDir
--- PASS: TestResolveRootfsWithNonExistingDir (0.00s)
=== RUN TestExitStatus
--- PASS: TestExitStatus (0.00s)
=== RUN TestExitStatusSignaled
--- PASS: TestExitStatusSignaled (0.00s)
=== RUN TestWriteJSON
--- PASS: TestWriteJSON (0.00s)
=== RUN TestCleanPath
--- PASS: TestCleanPath (0.00s)
PASS
ok github.com/opencontainers/runc/libcontainer/utils 0.003s
Makefile:71: recipe for target 'localunittest' failed
make: *** [localunittest] Error 1

The same error can be reproduced using make test.

Environment:

Since the test is done in the docker environment, I think the only things matter is the host machine.

  1. distribution
    Distributor ID: Ubuntu
    Description: Ubuntu 14.04.2 LTS
    Release: 14.04
    Codename: trusty

  2. kernel
    Linux m 3.13.0-35-generic spec: Add Network and Route structs #62-Ubuntu SMP Fri Aug 15 01:58:42 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

  3. docker -v
    Docker version 1.11.2, build b9f10c9

@cyphar
Copy link
Member

cyphar commented Feb 6, 2018

The unit tests require you to run as root. You can also run them inside a (privileged) Docker container if you don't want to worry about the tests touching your host filesystem.

@binchenX
Copy link
Contributor Author

binchenX commented Feb 6, 2018

It was running inside of container, iiuc, it was privileged mode.

This was part of the log:

docker run -e TESTFLAGS -t --privileged --rm -v /home/binchen/go/src/github.com/opencontainers/runc:/go/src/github.com/opencontainers/runc runc_dev:master make localunittest

A full log below:
(I didn't use sudo previously, just added it after seeing your response but seems didn't make any difference)

Let me know if I supposed to run it differently.

binchen@m:~/go/src/github.com/opencontainers/runc$ sudo make test
[sudo] password for binchen:
make unittest integration rootlessintegration
make[1]: Entering directory /home/binchen/go/src/github.com/opencontainers/runc' docker build -t runc_dev:master . Sending build context to Docker daemon 34.15 MB Step 1 : FROM golang:1.8 ---> d31fe3d9c824 Step 2 : RUN echo 'deb http://httpredir.debian.org/debian jessie-backports main' > /etc/apt/sources.list.d/backports.list ---> Using cache ---> 7f21c4f9c238 Step 3 : RUN apt-get update && apt-get install -y build-essential curl sudo gawk iptables jq pkg-config libaio-dev libcap-dev libprotobuf-dev libprotobuf-c0-dev libnl-3-dev libnet-dev libseccomp2/jessie-backports libseccomp-dev/jessie-backports protobuf-c-compiler protobuf-compiler python-minimal uidmap --no-install-recommends && apt-get clean ---> Using cache ---> 812e8718c3a7 Step 4 : RUN useradd -u1000 -m -d/home/rootless -s/bin/bash rootless ---> Using cache ---> fd729c7e4be9 Step 5 : RUN cd /tmp && git clone https://github.com/sstephenson/bats.git && cd bats && git reset --hard 03608115df2071fff4eaaff1605768c275e5f81f && ./install.sh /usr/local && rm -rf /tmp/bats ---> Using cache ---> 4c1934cf2ab0 Step 6 : ENV CRIU_VERSION 3ca8e575b49763030d3ddfec4af190a4c9f9deef ---> Using cache ---> 5596e63f9229 Step 7 : RUN mkdir -p /usr/src/criu && curl -sSL https://github.com/xemul/criu/archive/${CRIU_VERSION}.tar.gz | tar -v -C /usr/src/criu/ -xz --strip-components=1 && cd /usr/src/criu && make install-criu && rm -rf /usr/src/criu ---> Using cache ---> 55da6bbbeb2a Step 8 : ENV ROOTFS /busybox ---> Using cache ---> 8c25b27623c5 Step 9 : RUN mkdir -p ${ROOTFS} ---> Using cache ---> 19ce1b040cbb Step 10 : COPY script/tmpmount / ---> Using cache ---> ed58427ed422 Step 11 : WORKDIR /go/src/github.com/opencontainers/runc ---> Using cache ---> 8406ab37c8ef Step 12 : ENTRYPOINT /tmpmount ---> Using cache ---> b43b1615b7c2 Step 13 : ADD . /go/src/github.com/opencontainers/runc ---> Using cache ---> 8c09e257c7f2 Step 14 : RUN . tests/integration/multi-arch.bash && curl -o- -sSL get_busybox` | tar xfJC - ${ROOTFS}
---> Using cache
---> ac4011db8b0a
Successfully built ac4011db8b0a
docker run -e TESTFLAGS -t --privileged --rm -v /home/binchen/go/src/github.com/opencontainers/runc:/go/src/github.com/opencontainers/runc runc_dev:master make localunittest
go test -timeout 3m -tags "seccomp" -v github.com/opencontainers/runc github.com/opencontainers/runc/contrib/cmd/recvtty github.com/opencontainers/runc/libcontainer github.com/opencontainers/runc/libcontainer/apparmor github.com/opencontainers/runc/libcontainer/cgroups github.com/opencontainers/runc/libcontainer/cgroups/fs github.com/opencontainers/runc/libcontainer/cgroups/systemd github.com/opencontainers/runc/libcontainer/configs github.com/opencontainers/runc/libcontainer/configs/validate github.com/opencontainers/runc/libcontainer/criurpc github.com/opencontainers/runc/libcontainer/devices github.com/opencontainers/runc/libcontainer/integration github.com/opencontainers/runc/libcontainer/intelrdt github.com/opencontainers/runc/libcontainer/keys github.com/opencontainers/runc/libcontainer/mount github.com/opencontainers/runc/libcontainer/nsenter github.com/opencontainers/runc/libcontainer/seccomp github.com/opencontainers/runc/libcontainer/specconv github.com/opencontainers/runc/libcontainer/stacktrace github.com/opencontainers/runc/libcontainer/system github.com/opencontainers/runc/libcontainer/user github.com/opencontainers/runc/libcontainer/utils
? github.com/opencontainers/runc [no test files]
? github.com/opencontainers/runc/contrib/cmd/recvtty [no test files]
=== RUN TestGetContainerPids
--- PASS: TestGetContainerPids (0.00s)
=== RUN TestGetContainerStats
--- PASS: TestGetContainerStats (0.00s)
=== RUN TestGetContainerState
--- PASS: TestGetContainerState (0.00s)
=== RUN TestGetContainerStateAfterUpdate
--- PASS: TestGetContainerStateAfterUpdate (0.00s)
=== RUN TestErrorCode
--- PASS: TestErrorCode (0.00s)
=== RUN TestFactoryNew
--- PASS: TestFactoryNew (0.00s)
=== RUN TestFactoryNewIntelRdt
--- PASS: TestFactoryNewIntelRdt (0.00s)
=== RUN TestFactoryNewTmpfs
--- PASS: TestFactoryNewTmpfs (0.03s)
=== RUN TestFactoryLoadNotExists
--- PASS: TestFactoryLoadNotExists (0.00s)
=== RUN TestFactoryLoadContainer
time="2018-02-06T22:51:02Z" level=warning msg="cannot serialize hook of type libcontainer.unserializableHook, skipping"
--- PASS: TestFactoryLoadContainer (0.00s)
=== RUN TestErrorDetail
--- PASS: TestErrorDetail (0.00s)
=== RUN TestErrorWithCode
--- PASS: TestErrorWithCode (0.00s)
=== RUN TestErrorWithError
--- PASS: TestErrorWithError (0.00s)
=== RUN TestNotifyOnOOM
--- PASS: TestNotifyOnOOM (0.00s)
=== RUN TestNotifyMemoryPressure
--- PASS: TestNotifyMemoryPressure (0.00s)
=== RUN TestCheckMountDestOnProc
--- PASS: TestCheckMountDestOnProc (0.00s)
=== RUN TestCheckMountDestInSys
--- PASS: TestCheckMountDestInSys (0.00s)
=== RUN TestCheckMountDestFalsePositive
--- PASS: TestCheckMountDestFalsePositive (0.00s)
=== RUN TestNeedsSetupDev
--- PASS: TestNeedsSetupDev (0.00s)
=== RUN TestNeedsSetupDevStrangeSource
--- PASS: TestNeedsSetupDevStrangeSource (0.00s)
=== RUN TestNeedsSetupDevStrangeDest
--- PASS: TestNeedsSetupDevStrangeDest (0.00s)
=== RUN TestNeedsSetupDevStrangeSourceDest
--- PASS: TestNeedsSetupDevStrangeSourceDest (0.00s)
=== RUN TestStateStatus
--- PASS: TestStateStatus (0.00s)
=== RUN TestStoppedStateTransition
=== RUN TestStoppedStateTransition/stopped
=== RUN TestStoppedStateTransition/running
=== RUN TestStoppedStateTransition/running#01
=== RUN TestStoppedStateTransition/paused
=== RUN TestStoppedStateTransition/running#02
=== RUN TestStoppedStateTransition/created
--- PASS: TestStoppedStateTransition (0.00s)
--- PASS: TestStoppedStateTransition/stopped (0.00s)
--- PASS: TestStoppedStateTransition/running (0.00s)
--- PASS: TestStoppedStateTransition/running#01 (0.00s)
--- PASS: TestStoppedStateTransition/paused (0.00s)
--- PASS: TestStoppedStateTransition/running#02 (0.00s)
--- PASS: TestStoppedStateTransition/created (0.00s)
=== RUN TestPausedStateTransition
=== RUN TestPausedStateTransition/paused
=== RUN TestPausedStateTransition/running
=== RUN TestPausedStateTransition/stopped
=== RUN TestPausedStateTransition/running#01
=== RUN TestPausedStateTransition/created
=== RUN TestPausedStateTransition/running#02
--- PASS: TestPausedStateTransition (0.00s)
--- PASS: TestPausedStateTransition/paused (0.00s)
--- PASS: TestPausedStateTransition/running (0.00s)
--- PASS: TestPausedStateTransition/stopped (0.00s)
--- PASS: TestPausedStateTransition/running#01 (0.00s)
--- PASS: TestPausedStateTransition/created (0.00s)
--- PASS: TestPausedStateTransition/running#02 (0.00s)
=== RUN TestRestoredStateTransition
=== RUN TestRestoredStateTransition/stopped
=== RUN TestRestoredStateTransition/running
=== RUN TestRestoredStateTransition/running#01
=== RUN TestRestoredStateTransition/created
=== RUN TestRestoredStateTransition/running#02
=== RUN TestRestoredStateTransition/paused
--- PASS: TestRestoredStateTransition (0.00s)
--- PASS: TestRestoredStateTransition/stopped (0.00s)
--- PASS: TestRestoredStateTransition/running (0.00s)
--- PASS: TestRestoredStateTransition/running#01 (0.00s)
--- PASS: TestRestoredStateTransition/created (0.00s)
--- PASS: TestRestoredStateTransition/running#02 (0.00s)
--- PASS: TestRestoredStateTransition/paused (0.00s)
=== RUN TestRunningStateTransition
=== RUN TestRunningStateTransition/stopped
=== RUN TestRunningStateTransition/paused
=== RUN TestRunningStateTransition/running
=== RUN TestRunningStateTransition/created
=== RUN TestRunningStateTransition/running#01
=== RUN TestRunningStateTransition/running#02
--- PASS: TestRunningStateTransition (0.00s)
--- PASS: TestRunningStateTransition/stopped (0.00s)
--- PASS: TestRunningStateTransition/paused (0.00s)
--- PASS: TestRunningStateTransition/running (0.00s)
--- PASS: TestRunningStateTransition/created (0.00s)
--- PASS: TestRunningStateTransition/running#01 (0.00s)
--- PASS: TestRunningStateTransition/running#02 (0.00s)
=== RUN TestCreatedStateTransition
=== RUN TestCreatedStateTransition/stopped
=== RUN TestCreatedStateTransition/paused
=== RUN TestCreatedStateTransition/running
=== RUN TestCreatedStateTransition/created
=== RUN TestCreatedStateTransition/running#01
=== RUN TestCreatedStateTransition/running#02
--- PASS: TestCreatedStateTransition (0.00s)
--- PASS: TestCreatedStateTransition/stopped (0.00s)
--- PASS: TestCreatedStateTransition/paused (0.00s)
--- PASS: TestCreatedStateTransition/running (0.00s)
--- PASS: TestCreatedStateTransition/created (0.00s)
--- PASS: TestCreatedStateTransition/running#01 (0.00s)
--- PASS: TestCreatedStateTransition/running#02 (0.00s)
PASS
ok github.com/opencontainers/runc/libcontainer 0.046s
? github.com/opencontainers/runc/libcontainer/apparmor [no test files]
=== RUN TestParseCgroups
--- PASS: TestParseCgroups (0.00s)
=== RUN TestGetCgroupMounts
--- PASS: TestGetCgroupMounts (0.00s)
=== RUN TestParseCgroupString
--- PASS: TestParseCgroupString (0.00s)
=== RUN TestIgnoreCgroup2Mount
--- PASS: TestIgnoreCgroup2Mount (0.00s)
=== RUN TestGetClosestMountpointAncestor
--- PASS: TestGetClosestMountpointAncestor (0.00s)
PASS
ok github.com/opencontainers/runc/libcontainer/cgroups 0.002s
=== RUN TestInvalidCgroupPath
--- PASS: TestInvalidCgroupPath (0.00s)
=== RUN TestInvalidAbsoluteCgroupPath
--- PASS: TestInvalidAbsoluteCgroupPath (0.00s)
=== RUN TestInvalidCgroupParent
--- PASS: TestInvalidCgroupParent (0.00s)
=== RUN TestInvalidAbsoluteCgroupParent
--- PASS: TestInvalidAbsoluteCgroupParent (0.00s)
=== RUN TestInvalidCgroupName
--- PASS: TestInvalidCgroupName (0.00s)
=== RUN TestInvalidAbsoluteCgroupName
--- PASS: TestInvalidAbsoluteCgroupName (0.00s)
=== RUN TestInvalidCgroupNameAndParent
--- PASS: TestInvalidCgroupNameAndParent (0.00s)
=== RUN TestInvalidAbsoluteCgroupNameAndParent
--- PASS: TestInvalidAbsoluteCgroupNameAndParent (0.00s)
=== RUN TestBlkioSetWeight
--- PASS: TestBlkioSetWeight (0.00s)
=== RUN TestBlkioSetWeightDevice
--- PASS: TestBlkioSetWeightDevice (0.00s)
=== RUN TestBlkioSetMultipleWeightDevice
--- PASS: TestBlkioSetMultipleWeightDevice (0.00s)
=== RUN TestBlkioStats
--- PASS: TestBlkioStats (0.00s)
=== RUN TestBlkioStatsNoSectorsFile
--- PASS: TestBlkioStatsNoSectorsFile (0.00s)
=== RUN TestBlkioStatsNoServiceBytesFile
--- PASS: TestBlkioStatsNoServiceBytesFile (0.00s)
=== RUN TestBlkioStatsNoServicedFile
--- PASS: TestBlkioStatsNoServicedFile (0.00s)
=== RUN TestBlkioStatsNoQueuedFile
--- PASS: TestBlkioStatsNoQueuedFile (0.00s)
=== RUN TestBlkioStatsNoServiceTimeFile
--- PASS: TestBlkioStatsNoServiceTimeFile (0.00s)
=== RUN TestBlkioStatsNoWaitTimeFile
--- PASS: TestBlkioStatsNoWaitTimeFile (0.00s)
=== RUN TestBlkioStatsNoMergedFile
--- PASS: TestBlkioStatsNoMergedFile (0.00s)
=== RUN TestBlkioStatsNoTimeFile
--- PASS: TestBlkioStatsNoTimeFile (0.00s)
=== RUN TestBlkioStatsUnexpectedNumberOfFields
--- PASS: TestBlkioStatsUnexpectedNumberOfFields (0.00s)
=== RUN TestBlkioStatsUnexpectedFieldType
--- PASS: TestBlkioStatsUnexpectedFieldType (0.00s)
=== RUN TestNonCFQBlkioStats
--- PASS: TestNonCFQBlkioStats (0.00s)
=== RUN TestBlkioSetThrottleReadBpsDevice
--- PASS: TestBlkioSetThrottleReadBpsDevice (0.00s)
=== RUN TestBlkioSetThrottleWriteBpsDevice
--- PASS: TestBlkioSetThrottleWriteBpsDevice (0.00s)
=== RUN TestBlkioSetThrottleReadIOpsDevice
--- PASS: TestBlkioSetThrottleReadIOpsDevice (0.00s)
=== RUN TestBlkioSetThrottleWriteIOpsDevice
--- PASS: TestBlkioSetThrottleWriteIOpsDevice (0.00s)
=== RUN TestCpuSetShares
--- PASS: TestCpuSetShares (0.00s)
=== RUN TestCpuSetBandWidth
--- PASS: TestCpuSetBandWidth (0.00s)
=== RUN TestCpuStats
--- PASS: TestCpuStats (0.00s)
=== RUN TestNoCpuStatFile
--- PASS: TestNoCpuStatFile (0.00s)
=== RUN TestInvalidCpuStat
--- PASS: TestInvalidCpuStat (0.00s)
=== RUN TestCpuSetRtSchedAtApply
--- PASS: TestCpuSetRtSchedAtApply (0.00s)
=== RUN TestCpusetSetCpus
--- PASS: TestCpusetSetCpus (0.00s)
=== RUN TestCpusetSetMems
--- PASS: TestCpusetSetMems (0.00s)
=== RUN TestDevicesSetAllow
--- PASS: TestDevicesSetAllow (0.00s)
=== RUN TestDevicesSetDeny
--- PASS: TestDevicesSetDeny (0.00s)
=== RUN TestFreezerSetState
--- PASS: TestFreezerSetState (0.00s)
=== RUN TestFreezerSetInvalidState
--- PASS: TestFreezerSetInvalidState (0.00s)
=== RUN TestHugetlbSetHugetlb
--- PASS: TestHugetlbSetHugetlb (0.00s)
=== RUN TestHugetlbStats
--- PASS: TestHugetlbStats (0.00s)
=== RUN TestHugetlbStatsNoUsageFile
--- PASS: TestHugetlbStatsNoUsageFile (0.00s)
=== RUN TestHugetlbStatsNoMaxUsageFile
--- PASS: TestHugetlbStatsNoMaxUsageFile (0.00s)
=== RUN TestHugetlbStatsBadUsageFile
--- PASS: TestHugetlbStatsBadUsageFile (0.00s)
=== RUN TestHugetlbStatsBadMaxUsageFile
--- PASS: TestHugetlbStatsBadMaxUsageFile (0.00s)
=== RUN TestMemorySetMemory
--- PASS: TestMemorySetMemory (0.00s)
=== RUN TestMemorySetMemoryswap
--- PASS: TestMemorySetMemoryswap (0.00s)
=== RUN TestMemorySetMemoryLargerThanSwap
--- PASS: TestMemorySetMemoryLargerThanSwap (0.00s)
=== RUN TestMemorySetSwapSmallerThanMemory
--- PASS: TestMemorySetSwapSmallerThanMemory (0.00s)
=== RUN TestMemorySetKernelMemory
--- PASS: TestMemorySetKernelMemory (0.00s)
=== RUN TestMemorySetKernelMemoryTCP
--- PASS: TestMemorySetKernelMemoryTCP (0.00s)
=== RUN TestMemorySetMemorySwappinessDefault
--- PASS: TestMemorySetMemorySwappinessDefault (0.00s)
=== RUN TestMemoryStats
--- PASS: TestMemoryStats (0.00s)
=== RUN TestMemoryStatsNoStatFile
--- PASS: TestMemoryStatsNoStatFile (0.00s)
=== RUN TestMemoryStatsNoUsageFile
--- PASS: TestMemoryStatsNoUsageFile (0.00s)
=== RUN TestMemoryStatsNoMaxUsageFile
--- PASS: TestMemoryStatsNoMaxUsageFile (0.00s)
=== RUN TestMemoryStatsNoLimitInBytesFile
--- PASS: TestMemoryStatsNoLimitInBytesFile (0.00s)
=== RUN TestMemoryStatsBadStatFile
--- PASS: TestMemoryStatsBadStatFile (0.00s)
=== RUN TestMemoryStatsBadUsageFile
--- PASS: TestMemoryStatsBadUsageFile (0.00s)
=== RUN TestMemoryStatsBadMaxUsageFile
--- PASS: TestMemoryStatsBadMaxUsageFile (0.00s)
=== RUN TestMemoryStatsBadLimitInBytesFile
--- PASS: TestMemoryStatsBadLimitInBytesFile (0.00s)
=== RUN TestMemorySetOomControl
--- PASS: TestMemorySetOomControl (0.00s)
=== RUN TestNetClsSetClassid
--- PASS: TestNetClsSetClassid (0.00s)
=== RUN TestNetPrioSetIfPrio
--- PASS: TestNetPrioSetIfPrio (0.00s)
=== RUN TestPidsSetMax
--- PASS: TestPidsSetMax (0.00s)
=== RUN TestPidsSetUnlimited
--- PASS: TestPidsSetUnlimited (0.00s)
=== RUN TestPidsStats
--- PASS: TestPidsStats (0.00s)
=== RUN TestPidsStatsUnlimited
--- PASS: TestPidsStatsUnlimited (0.00s)
=== RUN TestGetCgroupParamsInt
--- PASS: TestGetCgroupParamsInt (0.00s)
PASS
ok github.com/opencontainers/runc/libcontainer/cgroups/fs 0.026s
? github.com/opencontainers/runc/libcontainer/cgroups/systemd [no test files]
=== RUN TestRemoveNamespace
--- PASS: TestRemoveNamespace (0.00s)
=== RUN TestHostRootUIDNoUSERNS
--- PASS: TestHostRootUIDNoUSERNS (0.00s)
=== RUN TestHostRootUIDWithUSERNS
--- PASS: TestHostRootUIDWithUSERNS (0.00s)
=== RUN TestHostRootGIDNoUSERNS
--- PASS: TestHostRootGIDNoUSERNS (0.00s)
=== RUN TestHostRootGIDWithUSERNS
--- PASS: TestHostRootGIDWithUSERNS (0.00s)
=== RUN TestUnmarshalHooks
--- PASS: TestUnmarshalHooks (0.00s)
=== RUN TestUnmarshalHooksWithInvalidData
--- PASS: TestUnmarshalHooksWithInvalidData (0.00s)
=== RUN TestMarshalHooks
--- PASS: TestMarshalHooks (0.00s)
=== RUN TestMarshalUnmarshalHooks
--- PASS: TestMarshalUnmarshalHooks (0.00s)
=== RUN TestMarshalHooksWithUnexpectedType
time="2018-02-06T22:51:01Z" level=warning msg="cannot serialize hook of type configs.FuncHook, skipping"
--- PASS: TestMarshalHooksWithUnexpectedType (0.00s)
=== RUN TestFuncHookRun
--- PASS: TestFuncHookRun (0.00s)
=== RUN TestCommandHookRun
--- PASS: TestCommandHookRun (0.02s)
=== RUN TestCommandHookRunTimeout
--- PASS: TestCommandHookRunTimeout (0.02s)
=== RUN TestHelperProcess
Helper Process
ok github.com/opencontainers/runc/libcontainer/configs 0.056s
=== RUN TestValidateRootless
--- PASS: TestValidateRootless (0.00s)
=== RUN TestValidateRootlessUserns
--- PASS: TestValidateRootlessUserns (0.00s)
=== RUN TestValidateRootlessMappingUid
--- PASS: TestValidateRootlessMappingUid (0.00s)
=== RUN TestValidateRootlessMappingGid
--- PASS: TestValidateRootlessMappingGid (0.00s)
=== RUN TestValidateRootlessMountUid
--- PASS: TestValidateRootlessMountUid (0.00s)
=== RUN TestValidateRootlessMountGid
--- PASS: TestValidateRootlessMountGid (0.00s)
=== RUN TestValidate
--- PASS: TestValidate (0.00s)
=== RUN TestValidateWithInvalidRootfs
--- PASS: TestValidateWithInvalidRootfs (0.00s)
=== RUN TestValidateNetworkWithoutNETNamespace
--- PASS: TestValidateNetworkWithoutNETNamespace (0.00s)
=== RUN TestValidateNetworkRoutesWithoutNETNamespace
--- PASS: TestValidateNetworkRoutesWithoutNETNamespace (0.00s)
=== RUN TestValidateHostname
--- PASS: TestValidateHostname (0.00s)
=== RUN TestValidateHostnameWithoutUTSNamespace
--- PASS: TestValidateHostnameWithoutUTSNamespace (0.00s)
=== RUN TestValidateSecurityWithMaskPaths
--- PASS: TestValidateSecurityWithMaskPaths (0.00s)
=== RUN TestValidateSecurityWithROPaths
--- PASS: TestValidateSecurityWithROPaths (0.00s)
=== RUN TestValidateSecurityWithoutNEWNS
--- PASS: TestValidateSecurityWithoutNEWNS (0.00s)
=== RUN TestValidateUsernamespace
--- PASS: TestValidateUsernamespace (0.00s)
=== RUN TestValidateUsernamespaceWithoutUserNS
--- PASS: TestValidateUsernamespaceWithoutUserNS (0.00s)
=== RUN TestValidateSysctl
--- PASS: TestValidateSysctl (0.00s)
=== RUN TestValidateValidSysctl
--- PASS: TestValidateValidSysctl (0.00s)
=== RUN TestValidateSysctlWithSameNs
--- PASS: TestValidateSysctlWithSameNs (0.00s)
=== RUN TestValidateSysctlWithoutNETNamespace
--- PASS: TestValidateSysctlWithoutNETNamespace (0.00s)
PASS
ok github.com/opencontainers/runc/libcontainer/configs/validate 0.031s
? github.com/opencontainers/runc/libcontainer/criurpc [no test files]
=== RUN TestDeviceFromPathLstatFailure
--- PASS: TestDeviceFromPathLstatFailure (0.00s)
=== RUN TestHostDevicesIoutilReadDirFailure
--- PASS: TestHostDevicesIoutilReadDirFailure (0.00s)
=== RUN TestHostDevicesIoutilReadDirDeepFailure
--- PASS: TestHostDevicesIoutilReadDirDeepFailure (0.00s)
PASS
ok github.com/opencontainers/runc/libcontainer/devices 0.031s
=== RUN TestUsernsCheckpoint
--- SKIP: TestUsernsCheckpoint (0.00s)
checkpoint_test.go:49: Unable to c/r a container with userns
=== RUN TestCheckpoint
--- FAIL: TestCheckpoint (0.29s)
checkpoint_test.go:20: === /tmp/criu-parent010604716/dump.log ===
checkpoint_test.go:31: (00.000038) Enforcing memory tracking for pre-dump.
checkpoint_test.go:31: (00.000056) Enforcing tasks run after pre-dump.
checkpoint_test.go:31: (00.000106) Warn (criu/kerndat.c:780): Can't load /run/criu.kdat
checkpoint_test.go:31: (00.000116) Probing sock diag modules
checkpoint_test.go:31: (00.000143) Done probing
checkpoint_test.go:31: (00.009488) Pagemap is fully functional
checkpoint_test.go:31: (00.009536) Found anon-shmem device at 4
checkpoint_test.go:31: (00.009540) Reset 1315's dirty tracking
checkpoint_test.go:31: (00.009581) ... done
checkpoint_test.go:31: (00.009592) Dirty track supported on kernel
checkpoint_test.go:31: (00.009625) Found task size of 7ffffffff000
checkpoint_test.go:31: (00.015324) Warn (criu/net.c:2504): Unable to get a socket network namespace
checkpoint_test.go:31: (00.015345) Warn (criu/libnetlink.c:55): ERROR -95 reported by netlink
checkpoint_test.go:31: (00.015347) Error (criu/kerndat.c:640): NSID is not supported
checkpoint_test.go:31: (00.015378) Found mmap_min_addr 0x10000
checkpoint_test.go:31: (00.015385) files stat: fs/file-max 1609434, fs/nr_open 1048576
checkpoint_test.go:31: (00.015402) Unfreezing tasks into 1
checkpoint_test.go:31: (00.015421) Error (criu/cr-dump.c:1602): Pre-dumping FAILED.
checkpoint_test.go:38: === END ===
checkpoint_test.go:147: criu failed: type PRE_DUMP errno 0
log file: /tmp/criu-parent010604716/dump.log
=== RUN TestExecPS
panic: test timed out after 3m0s

goroutine 23 [running]:
testing.startAlarm.func1()
/usr/local/go/src/testing/testing.go:1023 +0xf9
created by time.goFunc
/usr/local/go/src/time/sleep.go:170 +0x44

goroutine 1 [chan receive]:
testing.(*T).Run(0xc4200652b0, 0x78aac1, 0xa, 0x79d158, 0xc4200ebc00)
/usr/local/go/src/testing/testing.go:698 +0x2f4
testing.runTests.func1(0xc4200652b0)
/usr/local/go/src/testing/testing.go:882 +0x67
testing.tRunner(0xc4200652b0, 0xc4200ebd48)
/usr/local/go/src/testing/testing.go:657 +0x96
testing.runTests(0xc4200be780, 0xb12d00, 0x37, 0x37, 0x7f880815c000)
/usr/local/go/src/testing/testing.go:888 +0x2c1
testing.(*M).Run(0xc4200ebf20, 0xf)
/usr/local/go/src/testing/testing.go:822 +0xfc
github.com/opencontainers/runc/libcontainer/integration.TestMain(0xc4200ebf20)
/go/src/github.com/opencontainers/runc/libcontainer/integration/init_test.go:59 +0x15e
main.main()
github.com/opencontainers/runc/libcontainer/integration/_test/_testmain.go:148 +0xf7

goroutine 17 [syscall, locked to thread]:
runtime.goexit()
/usr/local/go/src/runtime/asm_amd64.s:2197 +0x1

goroutine 21 [syscall]:
syscall.Syscall6(0xf7, 0x1, 0x534, 0xc42004b7a8, 0x1000004, 0x0, 0x0, 0x49939c, 0x4, 0xc4200c2f30)
/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
os.(*Process).blockUntilWaitable(0xc4200c2fc0, 0xc42004b8c0, 0x4e3bb3, 0xc42000e170)
/usr/local/go/src/os/wait_waitid.go:28 +0xa5
os.(*Process).wait(0xc4200c2fc0, 0x0, 0x0, 0xc4200fa2c0)
/usr/local/go/src/os/exec_unix.go:22 +0x4d
os.(*Process).Wait(0xc4200c2fc0, 0x0, 0xc42004b988, 0x471788)
/usr/local/go/src/os/exec.go:115 +0x2b
github.com/opencontainers/runc/libcontainer.(*initProcess).execSetns(0xc420069980, 0xc42000e170, 0xb15c20)
/go/src/github.com/opencontainers/runc/libcontainer/process_linux.go:233 +0x3c
github.com/opencontainers/runc/libcontainer.(*initProcess).start(0xc420069980, 0x0, 0x0)
/go/src/github.com/opencontainers/runc/libcontainer/process_linux.go:300 +0x29e
github.com/opencontainers/runc/libcontainer.(*linuxContainer).start(0xc42037a000, 0xc4200b25a0, 0x1, 0x0, 0xc4200b25a0)
/go/src/github.com/opencontainers/runc/libcontainer/container_linux.go:343 +0x93
github.com/opencontainers/runc/libcontainer.(*linuxContainer).Start(0xc42037a000, 0xc4200b25a0, 0x0, 0x0)
/go/src/github.com/opencontainers/runc/libcontainer/container_linux.go:237 +0xd8
github.com/opencontainers/runc/libcontainer.(*linuxContainer).Run(0xc42037a000, 0xc4200b25a0, 0xc42037a000, 0x0)
/go/src/github.com/opencontainers/runc/libcontainer/container_linux.go:254 +0x98
github.com/opencontainers/runc/libcontainer/integration.runContainer(0xc420378000, 0x0, 0x0, 0xc4200c2d80, 0x3, 0x3, 0xc4200bede0, 0x0, 0x0, 0x0)
/go/src/github.com/opencontainers/runc/libcontainer/integration/utils_test.go:153 +0x375
github.com/opencontainers/runc/libcontainer/integration.testExecPS(0xc42034ac30, 0xc41f2da000)
/go/src/github.com/opencontainers/runc/libcontainer/integration/exec_test.go:48 +0x188
github.com/opencontainers/runc/libcontainer/integration.TestExecPS(0xc42034ac30)
/go/src/github.com/opencontainers/runc/libcontainer/integration/exec_test.go:24 +0x30
testing.tRunner(0xc42034ac30, 0x79d158)
/usr/local/go/src/testing/testing.go:657 +0x96
created by testing.(*T).Run
/usr/local/go/src/testing/testing.go:697 +0x2ca

goroutine 11 [syscall]:
syscall.Syscall(0x0, 0xb, 0xc420386000, 0x200, 0x7f880815c4b0, 0x219, 0xc420386000)
/usr/local/go/src/syscall/asm_linux_amd64.s:18 +0x5
syscall.read(0xb, 0xc420386000, 0x200, 0x200, 0xc4200da1e0, 0x7f880815c4b0, 0x0)
/usr/local/go/src/syscall/zsyscall_linux_amd64.go:783 +0x55
syscall.Read(0xb, 0xc420386000, 0x200, 0x200, 0x42dcbf, 0x79cd80, 0xc42002edc0)
/usr/local/go/src/syscall/syscall_unix.go:162 +0x49
os.(*File).read(0xc42000e1b0, 0xc420386000, 0x200, 0x200, 0x4e018b, 0x714480, 0x200)
/usr/local/go/src/os/file_unix.go:165 +0x4f
os.(*File).Read(0xc42000e1b0, 0xc420386000, 0x200, 0x200, 0x436ebe, 0xc4200c6820, 0xc42002ee60)
/usr/local/go/src/os/file.go:101 +0x76
bytes.(*Buffer).ReadFrom(0xc4200acfc0, 0xb16620, 0xc42000e1b0, 0x7f88080bc028, 0xc4200acfc0, 0xc42002ef01)
/usr/local/go/src/bytes/buffer.go:179 +0x160
io.copyBuffer(0xb15be0, 0xc4200acfc0, 0xb16620, 0xc42000e1b0, 0x0, 0x0, 0x0, 0xc420018f58, 0x0, 0x0)
/usr/local/go/src/io/io.go:384 +0x2cb
io.Copy(0xb15be0, 0xc4200acfc0, 0xb16620, 0xc42000e1b0, 0x710800, 0xc420018f00, 0xc42002efb0)
/usr/local/go/src/io/io.go:360 +0x68
os/exec.(*Cmd).writerDescriptor.func1(0x710800, 0xc420018f00)
/usr/local/go/src/os/exec/exec.go:254 +0x4d
os/exec.(*Cmd).Start.func1(0xc4200a71e0, 0xc4200bf000)
/usr/local/go/src/os/exec/exec.go:371 +0x27
created by os/exec.(*Cmd).Start
/usr/local/go/src/os/exec/exec.go:372 +0x4e4

goroutine 18 [syscall]:
syscall.Syscall(0x0, 0x8, 0xc42008cc00, 0x200, 0x0, 0x0, 0x0)
/usr/local/go/src/syscall/asm_linux_amd64.s:18 +0x5
syscall.read(0x8, 0xc42008cc00, 0x200, 0x200, 0xc4200c2cc0, 0x7f880815c000, 0x0)
/usr/local/go/src/syscall/zsyscall_linux_amd64.go:783 +0x55
syscall.Read(0x8, 0xc42008cc00, 0x200, 0x200, 0x42dcbf, 0x79cd80, 0xc4200285c0)
/usr/local/go/src/syscall/syscall_unix.go:162 +0x49
os.(*File).read(0xc4200ee088, 0xc42008cc00, 0x200, 0x200, 0x4e018b, 0x714480, 0x200)
/usr/local/go/src/os/file_unix.go:165 +0x4f
os.(*File).Read(0xc4200ee088, 0xc42008cc00, 0x200, 0x200, 0x0, 0x0, 0xc420028660)
/usr/local/go/src/os/file.go:101 +0x76
bytes.(*Buffer).ReadFrom(0xc420116000, 0xb16620, 0xc4200ee088, 0x7f88080bc028, 0xc420116000, 0x1)
/usr/local/go/src/bytes/buffer.go:179 +0x160
io.copyBuffer(0xb15be0, 0xc420116000, 0xb16620, 0xc4200ee088, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
/usr/local/go/src/io/io.go:384 +0x2cb
io.Copy(0xb15be0, 0xc420116000, 0xb16620, 0xc4200ee088, 0x0, 0x0, 0x0)
/usr/local/go/src/io/io.go:360 +0x68
os/exec.(*Cmd).writerDescriptor.func1(0x0, 0x0)
/usr/local/go/src/os/exec/exec.go:254 +0x4d
os/exec.(*Cmd).Start.func1(0xc420118000, 0xc4200f2440)
/usr/local/go/src/os/exec/exec.go:371 +0x27
created by os/exec.(*Cmd).Start
/usr/local/go/src/os/exec/exec.go:372 +0x4e4

goroutine 12 [syscall]:
syscall.Syscall(0x0, 0xd, 0xc42034e200, 0x200, 0x0, 0x0, 0x0)
/usr/local/go/src/syscall/asm_linux_amd64.s:18 +0x5
syscall.read(0xd, 0xc42034e200, 0x200, 0x200, 0xc4200f0390, 0x7f880815c960, 0x0)
/usr/local/go/src/syscall/zsyscall_linux_amd64.go:783 +0x55
syscall.Read(0xd, 0xc42034e200, 0x200, 0x200, 0x42dcbf, 0x79cd80, 0xc42002f5c0)
/usr/local/go/src/syscall/syscall_unix.go:162 +0x49
os.(*File).read(0xc42000e1c0, 0xc42034e200, 0x200, 0x200, 0x4e018b, 0x714480, 0x200)
/usr/local/go/src/os/file_unix.go:165 +0x4f
os.(*File).Read(0xc42000e1c0, 0xc42034e200, 0x200, 0x200, 0x0, 0x0, 0xc42002f660)
/usr/local/go/src/os/file.go:101 +0x76
bytes.(*Buffer).ReadFrom(0xc4200ad030, 0xb16620, 0xc42000e1c0, 0x7f88080bc028, 0xc4200ad030, 0x1)
/usr/local/go/src/bytes/buffer.go:179 +0x160
io.copyBuffer(0xb15be0, 0xc4200ad030, 0xb16620, 0xc42000e1c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
/usr/local/go/src/io/io.go:384 +0x2cb
io.Copy(0xb15be0, 0xc4200ad030, 0xb16620, 0xc42000e1c0, 0x0, 0x0, 0x0)
/usr/local/go/src/io/io.go:360 +0x68
os/exec.(*Cmd).writerDescriptor.func1(0x0, 0x0)
/usr/local/go/src/os/exec/exec.go:254 +0x4d
os/exec.(*Cmd).Start.func1(0xc4200a71e0, 0xc4200bf060)
/usr/local/go/src/os/exec/exec.go:371 +0x27
created by os/exec.(*Cmd).Start
/usr/local/go/src/os/exec/exec.go:372 +0x4e4
FAIL github.com/opencontainers/runc/libcontainer/integration 180.007s
=== RUN TestIntelRdtSetL3CacheSchema
--- PASS: TestIntelRdtSetL3CacheSchema (0.00s)
PASS
ok github.com/opencontainers/runc/libcontainer/intelrdt 0.002s
? github.com/opencontainers/runc/libcontainer/keys [no test files]
? github.com/opencontainers/runc/libcontainer/mount [no test files]
=== RUN TestNsenterValidPaths
--- PASS: TestNsenterValidPaths (0.05s)
=== RUN TestNsenterInvalidPaths
--- PASS: TestNsenterInvalidPaths (0.00s)
=== RUN TestNsenterIncorrectPathType
--- PASS: TestNsenterIncorrectPathType (0.00s)
PASS
ok github.com/opencontainers/runc/libcontainer/nsenter 0.053s
=== RUN TestParseStatusFile
--- PASS: TestParseStatusFile (0.00s)
PASS
ok github.com/opencontainers/runc/libcontainer/seccomp 0.053s
=== RUN TestCreateCommandHookTimeout
--- PASS: TestCreateCommandHookTimeout (0.00s)
=== RUN TestCreateHooks
--- PASS: TestCreateHooks (0.00s)
=== RUN TestSetupSeccomp
--- PASS: TestSetupSeccomp (0.00s)
=== RUN TestLinuxCgroupWithMemoryResource
--- PASS: TestLinuxCgroupWithMemoryResource (0.00s)
=== RUN TestLinuxCgroupSystemd
--- PASS: TestLinuxCgroupSystemd (0.00s)
=== RUN TestLinuxCgroupSystemdWithEmptyPath
--- PASS: TestLinuxCgroupSystemdWithEmptyPath (0.00s)
=== RUN TestLinuxCgroupSystemdWithInvalidPath
--- PASS: TestLinuxCgroupSystemdWithInvalidPath (0.00s)
=== RUN TestLinuxCgroupsPathSpecified
--- PASS: TestLinuxCgroupsPathSpecified (0.00s)
=== RUN TestLinuxCgroupsPathNotSpecified
--- PASS: TestLinuxCgroupsPathNotSpecified (0.00s)
=== RUN TestSpecconvExampleValidate
--- PASS: TestSpecconvExampleValidate (0.00s)
=== RUN TestDupNamespaces
--- PASS: TestDupNamespaces (0.00s)
=== RUN TestRootlessSpecconvValidate
--- PASS: TestRootlessSpecconvValidate (0.00s)
PASS
ok github.com/opencontainers/runc/libcontainer/specconv 0.059s
=== RUN TestCaptureTestFunc
--- PASS: TestCaptureTestFunc (0.00s)
=== RUN TestParsePackageName
--- PASS: TestParsePackageName (0.00s)
PASS
ok github.com/opencontainers/runc/libcontainer/stacktrace 0.014s
=== RUN TestParseStartTime
--- PASS: TestParseStartTime (0.00s)
PASS
ok github.com/opencontainers/runc/libcontainer/system 0.002s
=== RUN TestUserParseLine
--- PASS: TestUserParseLine (0.00s)
=== RUN TestUserParsePasswd
--- PASS: TestUserParsePasswd (0.00s)
=== RUN TestUserParseGroup
--- PASS: TestUserParseGroup (0.00s)
=== RUN TestValidGetExecUser
--- PASS: TestValidGetExecUser (0.00s)
=== RUN TestInvalidGetExecUser
--- PASS: TestInvalidGetExecUser (0.00s)
=== RUN TestGetExecUserNilSources
--- PASS: TestGetExecUserNilSources (0.00s)
=== RUN TestGetAdditionalGroups
--- PASS: TestGetAdditionalGroups (0.00s)
=== RUN TestGetAdditionalGroupsNumeric
--- PASS: TestGetAdditionalGroupsNumeric (0.00s)
PASS
ok github.com/opencontainers/runc/libcontainer/user 0.007s
=== RUN TestGenerateName
--- PASS: TestGenerateName (0.00s)
=== RUN TestSearchLabels
--- PASS: TestSearchLabels (0.00s)
=== RUN TestResolveRootfs
--- PASS: TestResolveRootfs (0.00s)
=== RUN TestResolveRootfsWithSymlink
--- PASS: TestResolveRootfsWithSymlink (0.00s)
=== RUN TestResolveRootfsWithNonExistingDir
--- PASS: TestResolveRootfsWithNonExistingDir (0.00s)
=== RUN TestExitStatus
--- PASS: TestExitStatus (0.00s)
=== RUN TestExitStatusSignaled
--- PASS: TestExitStatusSignaled (0.00s)
=== RUN TestWriteJSON
--- PASS: TestWriteJSON (0.00s)
=== RUN TestCleanPath
--- PASS: TestCleanPath (0.00s)
PASS
ok github.com/opencontainers/runc/libcontainer/utils 0.005s
Makefile:71: recipe for target 'localunittest' failed
make: *** [localunittest] Error 1
^Cmake[1]: *** [unittest] Error 2
make: *** [test] Interrupt

@tiborvass
Copy link
Contributor

tiborvass commented Feb 24, 2018

I have something similar on Ubuntu 16.04 (DigitalOcean):

=== RUN   TestUsernsCheckpoint
--- FAIL: TestUsernsCheckpoint (0.49s)
	checkpoint_test.go:20: === /tmp/criu091208469/dump.log ===
	checkpoint_test.go:31: (00.000062) ========================================
	checkpoint_test.go:31: (00.000077) Dumping processes (pid: 1292)
	checkpoint_test.go:31: (00.000080) ========================================
	checkpoint_test.go:31: (00.000084) Running pre-dump scripts
	checkpoint_test.go:31: (00.000087) 	RPC
	checkpoint_test.go:31: (00.000277) Warn  (criu/kerndat.c:780): Can't load /run/criu.kdat
	checkpoint_test.go:31: (00.000292) Probing sock diag modules
	checkpoint_test.go:31: (00.000331) Done probing
	checkpoint_test.go:31: (00.022097) Error (criu/util.c:714): exited, status=3
	checkpoint_test.go:31: (00.022187) Pagemap is fully functional
	checkpoint_test.go:31: (00.022227) Found anon-shmem device at 5
	checkpoint_test.go:31: (00.022235) Reset 1331's dirty tracking
	checkpoint_test.go:31: (00.022277)  ... done
	checkpoint_test.go:31: (00.022302) Dirty track supported on kernel
	checkpoint_test.go:31: (00.022362) Found task size of 7ffffffff000
	checkpoint_test.go:31: (00.034682) Warn  (criu/net.c:2504): Unable to get a socket network namespace
	checkpoint_test.go:31: (00.034851) No /proc/self/ns/pid_for_children
	checkpoint_test.go:31: (00.034957) vdso: Parsing at 7ffda2571000 7ffda2573000
	checkpoint_test.go:31: (00.034962) vdso: PT_LOAD p_vaddr: 0
	checkpoint_test.go:31: (00.034964) vdso: DT_HASH: 120
	checkpoint_test.go:31: (00.034965) vdso: DT_STRTAB: 2b0
	checkpoint_test.go:31: (00.034966) vdso: DT_SYMTAB: 1a8
	checkpoint_test.go:31: (00.034967) vdso: DT_STRSZ: 5e
	checkpoint_test.go:31: (00.034968) vdso: DT_SYMENT: 18
	checkpoint_test.go:31: (00.034969) vdso: nbucket 3 nchain b bucket 7ffda2571128 chain 7ffda2571134
	checkpoint_test.go:31: (00.034977) vdso: rt [vdso] 7ffda2571000-7ffda2573000 [vvar] 7ffda256f000-7ffda2571000
	checkpoint_test.go:31: (00.035145) Found mmap_min_addr 0x10000
	checkpoint_test.go:31: (00.035159) files stat: fs/file-max 1637952, fs/nr_open 1048576
	checkpoint_test.go:31: (00.035244) Warn  (criu/kerndat.c:819): Can't keep kdat cache on non-tempfs
	checkpoint_test.go:31: (00.035282) irmap: Searching irmap cache in work dir
	checkpoint_test.go:31: (00.035293) No irmap-cache image
	checkpoint_test.go:31: (00.035296) irmap: Searching irmap cache in parent
	checkpoint_test.go:31: (00.035303) irmap: No irmap cache
	checkpoint_test.go:31: (00.035327) cpu: fpu:1 fxsr:1 xsave:1
	checkpoint_test.go:31: (00.035406) cg-prop: Parsing controller "cpu"
	checkpoint_test.go:31: (00.035410) cg-prop: 	Strategy "replace"
	checkpoint_test.go:31: (00.035414) cg-prop: 	Property "cpu.shares"
	checkpoint_test.go:31: (00.035415) cg-prop: 	Property "cpu.cfs_period_us"
	checkpoint_test.go:31: (00.035416) cg-prop: 	Property "cpu.cfs_quota_us"
	checkpoint_test.go:31: (00.035418) cg-prop: 	Property "cpu.rt_period_us"
	checkpoint_test.go:31: (00.035419) cg-prop: 	Property "cpu.rt_runtime_us"
	checkpoint_test.go:31: (00.035421) cg-prop: Parsing controller "memory"
	checkpoint_test.go:31: (00.035422) cg-prop: 	Strategy "replace"
	checkpoint_test.go:31: (00.035423) cg-prop: 	Property "memory.limit_in_bytes"
	checkpoint_test.go:31: (00.035424) cg-prop: 	Property "memory.memsw.limit_in_bytes"
	checkpoint_test.go:31: (00.035426) cg-prop: 	Property "memory.swappiness"
	checkpoint_test.go:31: (00.035427) cg-prop: 	Property "memory.soft_limit_in_bytes"
	checkpoint_test.go:31: (00.035428) cg-prop: 	Property "memory.move_charge_at_immigrate"
	checkpoint_test.go:31: (00.035429) cg-prop: 	Property "memory.oom_control"
	checkpoint_test.go:31: (00.035430) cg-prop: 	Property "memory.use_hierarchy"
	checkpoint_test.go:31: (00.035432) cg-prop: 	Property "memory.kmem.limit_in_bytes"
	checkpoint_test.go:31: (00.035433) cg-prop: 	Property "memory.kmem.tcp.limit_in_bytes"
	checkpoint_test.go:31: (00.035434) cg-prop: Parsing controller "cpuset"
	checkpoint_test.go:31: (00.035435) cg-prop: 	Strategy "replace"
	checkpoint_test.go:31: (00.035436) cg-prop: 	Property "cpuset.cpus"
	checkpoint_test.go:31: (00.035437) cg-prop: 	Property "cpuset.mems"
	checkpoint_test.go:31: (00.035438) cg-prop: 	Property "cpuset.memory_migrate"
	checkpoint_test.go:31: (00.035439) cg-prop: 	Property "cpuset.cpu_exclusive"
	checkpoint_test.go:31: (00.035440) cg-prop: 	Property "cpuset.mem_exclusive"
	checkpoint_test.go:31: (00.035442) cg-prop: 	Property "cpuset.mem_hardwall"
	checkpoint_test.go:31: (00.035443) cg-prop: 	Property "cpuset.memory_spread_page"
	checkpoint_test.go:31: (00.035444) cg-prop: 	Property "cpuset.memory_spread_slab"
	checkpoint_test.go:31: (00.035445) cg-prop: 	Property "cpuset.sched_load_balance"
	checkpoint_test.go:31: (00.035446) cg-prop: 	Property "cpuset.sched_relax_domain_level"
	checkpoint_test.go:31: (00.035447) cg-prop: Parsing controller "blkio"
	checkpoint_test.go:31: (00.035448) cg-prop: 	Strategy "replace"
	checkpoint_test.go:31: (00.035449) cg-prop: 	Property "blkio.weight"
	checkpoint_test.go:31: (00.035450) cg-prop: Parsing controller "freezer"
	checkpoint_test.go:31: (00.035452) cg-prop: 	Strategy "replace"
	checkpoint_test.go:31: (00.035453) cg-prop: Parsing controller "perf_event"
	checkpoint_test.go:31: (00.035454) cg-prop: 	Strategy "replace"
	checkpoint_test.go:31: (00.035455) cg-prop: Parsing controller "net_cls"
	checkpoint_test.go:31: (00.035456) cg-prop: 	Strategy "replace"
	checkpoint_test.go:31: (00.035457) cg-prop: 	Property "net_cls.classid"
	checkpoint_test.go:31: (00.035458) cg-prop: Parsing controller "net_prio"
	checkpoint_test.go:31: (00.035460) cg-prop: 	Strategy "replace"
	checkpoint_test.go:31: (00.035461) cg-prop: 	Property "net_prio.ifpriomap"
	checkpoint_test.go:31: (00.035465) cg-prop: Parsing controller "pids"
	checkpoint_test.go:31: (00.035467) cg-prop: 	Strategy "replace"
	checkpoint_test.go:31: (00.035468) cg-prop: 	Property "pids.max"
	checkpoint_test.go:31: (00.035469) cg-prop: Parsing controller "devices"
	checkpoint_test.go:31: (00.035471) cg-prop: 	Strategy "replace"
	checkpoint_test.go:31: (00.035472) cg-prop: 	Property "devices.list"
	checkpoint_test.go:31: (00.035531) Perparing image inventory (version 1)
	checkpoint_test.go:31: (00.035551) Add pid ns 1 pid 1331
	checkpoint_test.go:31: (00.035557) Add user ns 2 pid 1331
	checkpoint_test.go:31: (00.035570) Add net ns 3 pid 1331
	checkpoint_test.go:31: (00.035579) Add ipc ns 4 pid 1331
	checkpoint_test.go:31: (00.035586) Add uts ns 5 pid 1331
	checkpoint_test.go:31: (00.035594) Add mnt ns 6 pid 1331
	checkpoint_test.go:31: (00.035601) Add cgroup ns 7 pid 1331
	checkpoint_test.go:31: (00.035604) cg: Dumping cgroups for 1331
	checkpoint_test.go:31: (00.035639) cg:  `- New css ID 1
	checkpoint_test.go:31: (00.035642) cg:     `- [blkio] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.035644) cg:     `- [cpu,cpuacct] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.035645) cg:     `- [cpuset] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.035646) cg:     `- [devices] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.035647) cg:     `- [freezer] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.035648) cg:     `- [hugetlb] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.035650) cg:     `- [memory] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.035651) cg:     `- [name=systemd] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.035652) cg:     `- [net_cls,net_prio] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.035653) cg:     `- [perf_event] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.035654) cg:     `- [pids] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.035655) cg: Set 1 is criu one
	checkpoint_test.go:31: (00.035677) Will take net namespace in the image
	checkpoint_test.go:31: (00.035679) Add net ns 8 pid 1292
	checkpoint_test.go:31: (00.035685) Will take mnt namespace in the image
	checkpoint_test.go:31: (00.035687) Add mnt ns 9 pid 1292
	checkpoint_test.go:31: (00.035693) Will take pid namespace in the image
	checkpoint_test.go:31: (00.035694) Add pid ns 10 pid 1292
	checkpoint_test.go:31: (00.035700) freezing processes: 100000 attempst with 100 ms steps
	checkpoint_test.go:31: (00.035720) freezer.state=THAWED
	checkpoint_test.go:31: (00.035740) freezer.state=FREEZING
	checkpoint_test.go:31: (00.135864) freezer.state=FROZEN
	checkpoint_test.go:31: (00.135891) freezing processes: 1 attempts done
	checkpoint_test.go:31: (00.136019) SEIZE 1292: success
	checkpoint_test.go:31: (00.136236) Seized task 1292, state 1
	checkpoint_test.go:31: (00.136256) Collected (0 attempts, 0 in_progress)
	checkpoint_test.go:31: (00.136272) Collected (0 attempts, 0 in_progress)
	checkpoint_test.go:31: (00.136287) Collected 1292 in 1 state
	checkpoint_test.go:31: (00.136325) Will take user namespace in the image
	checkpoint_test.go:31: (00.136327) Add user ns 11 pid 1292
	checkpoint_test.go:31: (00.136342) Will take ipc namespace in the image
	checkpoint_test.go:31: (00.136344) Add ipc ns 12 pid 1292
	checkpoint_test.go:31: (00.136351) Will take uts namespace in the image
	checkpoint_test.go:31: (00.136353) Add uts ns 13 pid 1292
	checkpoint_test.go:31: (00.136366) Lock network
	checkpoint_test.go:31: (00.136368) Running network-lock scripts
	checkpoint_test.go:31: (00.136370) 	RPC
	checkpoint_test.go:31: ip6tables-restore v1.4.21: ip6tables-restore: unable to initialize table 'filter'
	checkpoint_test.go:31:
	checkpoint_test.go:31: Error occurred at line: 1
	checkpoint_test.go:31: Try `ip6tables-restore -h' or 'ip6tables-restore --help' for more information.
	checkpoint_test.go:31: (00.158515) Error (criu/util.c:714): exited, status=2
	checkpoint_test.go:31: (00.158542) Error (criu/net.c:2283): Locking network failed: iptables-restore returned -1. This may be connected to disabled CONFIG_NETFILTER_XT_MARK kernel build config option.
	checkpoint_test.go:31: (00.158593) Unlock network
	checkpoint_test.go:31: (00.158601) Running network-unlock scripts
	checkpoint_test.go:31: (00.158604) 	RPC
	checkpoint_test.go:31: ip6tables-restore v1.4.21: ip6tables-restore: unable to initialize table 'filter'
	checkpoint_test.go:31:
	checkpoint_test.go:31: Error occurred at line: 1
	checkpoint_test.go:31: Try `ip6tables-restore -h' or 'ip6tables-restore --help' for more information.
	checkpoint_test.go:31: (00.179977) Error (criu/util.c:714): exited, status=2
	checkpoint_test.go:31: (00.180012) Unfreezing tasks into 1
	checkpoint_test.go:31: (00.180044) Error (criu/cr-dump.c:1794): Dumping FAILED.
	checkpoint_test.go:38: === END ===
	checkpoint_test.go:175: criu failed: type NOTIFY errno 0
		log file: /tmp/criu091208469/dump.log
=== RUN   TestCheckpoint
--- FAIL: TestCheckpoint (0.44s)
	checkpoint_test.go:20: === /tmp/criu137289497/dump.log ===
	checkpoint_test.go:31: (00.000057) ========================================
	checkpoint_test.go:31: (00.000070) Dumping processes (pid: 1348)
	checkpoint_test.go:31: (00.000073) ========================================
	checkpoint_test.go:31: (00.000077) Running pre-dump scripts
	checkpoint_test.go:31: (00.000078) 	RPC
	checkpoint_test.go:31: (00.000247) Warn  (criu/kerndat.c:780): Can't load /run/criu.kdat
	checkpoint_test.go:31: (00.000263) Probing sock diag modules
	checkpoint_test.go:31: (00.000299) Done probing
	checkpoint_test.go:31: (00.023882) Error (criu/util.c:714): exited, status=3
	checkpoint_test.go:31: (00.024036) Pagemap is fully functional
	checkpoint_test.go:31: (00.024108) Found anon-shmem device at 5
	checkpoint_test.go:31: (00.024121) Reset 1369's dirty tracking
	checkpoint_test.go:31: (00.024198)  ... done
	checkpoint_test.go:31: (00.024246) Dirty track supported on kernel
	checkpoint_test.go:31: (00.024349) Found task size of 7ffffffff000
	checkpoint_test.go:31: (00.038277) Warn  (criu/net.c:2504): Unable to get a socket network namespace
	checkpoint_test.go:31: (00.038487) No /proc/self/ns/pid_for_children
	checkpoint_test.go:31: (00.038612) vdso: Parsing at 7ffcc2293000 7ffcc2295000
	checkpoint_test.go:31: (00.038618) vdso: PT_LOAD p_vaddr: 0
	checkpoint_test.go:31: (00.038620) vdso: DT_HASH: 120
	checkpoint_test.go:31: (00.038622) vdso: DT_STRTAB: 2b0
	checkpoint_test.go:31: (00.038623) vdso: DT_SYMTAB: 1a8
	checkpoint_test.go:31: (00.038624) vdso: DT_STRSZ: 5e
	checkpoint_test.go:31: (00.038626) vdso: DT_SYMENT: 18
	checkpoint_test.go:31: (00.038627) vdso: nbucket 3 nchain b bucket 7ffcc2293128 chain 7ffcc2293134
	checkpoint_test.go:31: (00.038640) vdso: rt [vdso] 7ffcc2293000-7ffcc2295000 [vvar] 7ffcc2291000-7ffcc2293000
	checkpoint_test.go:31: (00.038825) Found mmap_min_addr 0x10000
	checkpoint_test.go:31: (00.038843) files stat: fs/file-max 1637952, fs/nr_open 1048576
	checkpoint_test.go:31: (00.038941) Warn  (criu/kerndat.c:819): Can't keep kdat cache on non-tempfs
	checkpoint_test.go:31: (00.038987) irmap: Searching irmap cache in work dir
	checkpoint_test.go:31: (00.038999) No irmap-cache image
	checkpoint_test.go:31: (00.039002) irmap: Searching irmap cache in parent
	checkpoint_test.go:31: (00.039011) irmap: No irmap cache
	checkpoint_test.go:31: (00.039040) cpu: fpu:1 fxsr:1 xsave:1
	checkpoint_test.go:31: (00.039140) cg-prop: Parsing controller "cpu"
	checkpoint_test.go:31: (00.039146) cg-prop: 	Strategy "replace"
	checkpoint_test.go:31: (00.039150) cg-prop: 	Property "cpu.shares"
	checkpoint_test.go:31: (00.039152) cg-prop: 	Property "cpu.cfs_period_us"
	checkpoint_test.go:31: (00.039154) cg-prop: 	Property "cpu.cfs_quota_us"
	checkpoint_test.go:31: (00.039156) cg-prop: 	Property "cpu.rt_period_us"
	checkpoint_test.go:31: (00.039157) cg-prop: 	Property "cpu.rt_runtime_us"
	checkpoint_test.go:31: (00.039159) cg-prop: Parsing controller "memory"
	checkpoint_test.go:31: (00.039161) cg-prop: 	Strategy "replace"
	checkpoint_test.go:31: (00.039163) cg-prop: 	Property "memory.limit_in_bytes"
	checkpoint_test.go:31: (00.039164) cg-prop: 	Property "memory.memsw.limit_in_bytes"
	checkpoint_test.go:31: (00.039177) cg-prop: 	Property "memory.swappiness"
	checkpoint_test.go:31: (00.039179) cg-prop: 	Property "memory.soft_limit_in_bytes"
	checkpoint_test.go:31: (00.039180) cg-prop: 	Property "memory.move_charge_at_immigrate"
	checkpoint_test.go:31: (00.039182) cg-prop: 	Property "memory.oom_control"
	checkpoint_test.go:31: (00.039184) cg-prop: 	Property "memory.use_hierarchy"
	checkpoint_test.go:31: (00.039185) cg-prop: 	Property "memory.kmem.limit_in_bytes"
	checkpoint_test.go:31: (00.039187) cg-prop: 	Property "memory.kmem.tcp.limit_in_bytes"
	checkpoint_test.go:31: (00.039189) cg-prop: Parsing controller "cpuset"
	checkpoint_test.go:31: (00.039190) cg-prop: 	Strategy "replace"
	checkpoint_test.go:31: (00.039192) cg-prop: 	Property "cpuset.cpus"
	checkpoint_test.go:31: (00.039193) cg-prop: 	Property "cpuset.mems"
	checkpoint_test.go:31: (00.039195) cg-prop: 	Property "cpuset.memory_migrate"
	checkpoint_test.go:31: (00.039196) cg-prop: 	Property "cpuset.cpu_exclusive"
	checkpoint_test.go:31: (00.039198) cg-prop: 	Property "cpuset.mem_exclusive"
	checkpoint_test.go:31: (00.039200) cg-prop: 	Property "cpuset.mem_hardwall"
	checkpoint_test.go:31: (00.039201) cg-prop: 	Property "cpuset.memory_spread_page"
	checkpoint_test.go:31: (00.039203) cg-prop: 	Property "cpuset.memory_spread_slab"
	checkpoint_test.go:31: (00.039204) cg-prop: 	Property "cpuset.sched_load_balance"
	checkpoint_test.go:31: (00.039206) cg-prop: 	Property "cpuset.sched_relax_domain_level"
	checkpoint_test.go:31: (00.039207) cg-prop: Parsing controller "blkio"
	checkpoint_test.go:31: (00.039209) cg-prop: 	Strategy "replace"
	checkpoint_test.go:31: (00.039210) cg-prop: 	Property "blkio.weight"
	checkpoint_test.go:31: (00.039212) cg-prop: Parsing controller "freezer"
	checkpoint_test.go:31: (00.039213) cg-prop: 	Strategy "replace"
	checkpoint_test.go:31: (00.039215) cg-prop: Parsing controller "perf_event"
	checkpoint_test.go:31: (00.039216) cg-prop: 	Strategy "replace"
	checkpoint_test.go:31: (00.039218) cg-prop: Parsing controller "net_cls"
	checkpoint_test.go:31: (00.039219) cg-prop: 	Strategy "replace"
	checkpoint_test.go:31: (00.039220) cg-prop: 	Property "net_cls.classid"
	checkpoint_test.go:31: (00.039222) cg-prop: Parsing controller "net_prio"
	checkpoint_test.go:31: (00.039223) cg-prop: 	Strategy "replace"
	checkpoint_test.go:31: (00.039225) cg-prop: 	Property "net_prio.ifpriomap"
	checkpoint_test.go:31: (00.039231) cg-prop: Parsing controller "pids"
	checkpoint_test.go:31: (00.039234) cg-prop: 	Strategy "replace"
	checkpoint_test.go:31: (00.039235) cg-prop: 	Property "pids.max"
	checkpoint_test.go:31: (00.039237) cg-prop: Parsing controller "devices"
	checkpoint_test.go:31: (00.039238) cg-prop: 	Strategy "replace"
	checkpoint_test.go:31: (00.039239) cg-prop: 	Property "devices.list"
	checkpoint_test.go:31: (00.039332) Perparing image inventory (version 1)
	checkpoint_test.go:31: (00.039358) Add pid ns 1 pid 1369
	checkpoint_test.go:31: (00.039365) Add user ns 2 pid 1369
	checkpoint_test.go:31: (00.039377) Add net ns 3 pid 1369
	checkpoint_test.go:31: (00.039387) Add ipc ns 4 pid 1369
	checkpoint_test.go:31: (00.039395) Add uts ns 5 pid 1369
	checkpoint_test.go:31: (00.039402) Add mnt ns 6 pid 1369
	checkpoint_test.go:31: (00.039410) Add cgroup ns 7 pid 1369
	checkpoint_test.go:31: (00.039412) cg: Dumping cgroups for 1369
	checkpoint_test.go:31: (00.039449) cg:  `- New css ID 1
	checkpoint_test.go:31: (00.039452) cg:     `- [blkio] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.039454) cg:     `- [cpu,cpuacct] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.039455) cg:     `- [cpuset] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.039456) cg:     `- [devices] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.039457) cg:     `- [freezer] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.039458) cg:     `- [hugetlb] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.039459) cg:     `- [memory] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.039461) cg:     `- [name=systemd] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.039462) cg:     `- [net_cls,net_prio] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.039463) cg:     `- [perf_event] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.039464) cg:     `- [pids] -> [/docker/7f2683e556af9f0ff0070ccb367aa63d1220650fdd437b42a8508626317ee122] [0]
	checkpoint_test.go:31: (00.039465) cg: Set 1 is criu one
	checkpoint_test.go:31: (00.039485) Will take net namespace in the image
	checkpoint_test.go:31: (00.039488) Add net ns 8 pid 1348
	checkpoint_test.go:31: (00.039493) Will take mnt namespace in the image
	checkpoint_test.go:31: (00.039495) Add mnt ns 9 pid 1348
	checkpoint_test.go:31: (00.039501) Will take pid namespace in the image
	checkpoint_test.go:31: (00.039502) Add pid ns 10 pid 1348
	checkpoint_test.go:31: (00.039509) freezing processes: 100000 attempst with 100 ms steps
	checkpoint_test.go:31: (00.039530) freezer.state=THAWED
	checkpoint_test.go:31: (00.039552) freezer.state=FREEZING
	checkpoint_test.go:31: (00.139682) freezer.state=FROZEN
	checkpoint_test.go:31: (00.139710) freezing processes: 1 attempts done
	checkpoint_test.go:31: (00.139843) SEIZE 1348: success
	checkpoint_test.go:31: (00.140167) Seized task 1348, state 1
	checkpoint_test.go:31: (00.140198) Collected (0 attempts, 0 in_progress)
	checkpoint_test.go:31: (00.140221) Collected (0 attempts, 0 in_progress)
	checkpoint_test.go:31: (00.140243) Collected 1348 in 1 state
	checkpoint_test.go:31: (00.140307) Will take ipc namespace in the image
	checkpoint_test.go:31: (00.140312) Add ipc ns 11 pid 1348
	checkpoint_test.go:31: (00.140323) Will take uts namespace in the image
	checkpoint_test.go:31: (00.140325) Add uts ns 12 pid 1348
	checkpoint_test.go:31: (00.140343) Lock network
	checkpoint_test.go:31: (00.140347) Running network-lock scripts
	checkpoint_test.go:31: (00.140349) 	RPC
	checkpoint_test.go:31: ip6tables-restore v1.4.21: ip6tables-restore: unable to initialize table 'filter'
	checkpoint_test.go:31:
	checkpoint_test.go:31: Error occurred at line: 1
	checkpoint_test.go:31: Try `ip6tables-restore -h' or 'ip6tables-restore --help' for more information.
	checkpoint_test.go:31: (00.163483) Error (criu/util.c:714): exited, status=2
	checkpoint_test.go:31: (00.163515) Error (criu/net.c:2283): Locking network failed: iptables-restore returned -1. This may be connected to disabled CONFIG_NETFILTER_XT_MARK kernel build config option.
	checkpoint_test.go:31: (00.163537) Unlock network
	checkpoint_test.go:31: (00.163541) Running network-unlock scripts
	checkpoint_test.go:31: (00.163543) 	RPC
	checkpoint_test.go:31: ip6tables-restore v1.4.21: ip6tables-restore: unable to initialize table 'filter'
	checkpoint_test.go:31:
	checkpoint_test.go:31: Error occurred at line: 1
	checkpoint_test.go:31: Try `ip6tables-restore -h' or 'ip6tables-restore --help' for more information.
	checkpoint_test.go:31: (00.190310) Error (criu/util.c:714): exited, status=2
	checkpoint_test.go:31: (00.190350) Unfreezing tasks into 1
	checkpoint_test.go:31: (00.190390) Error (criu/cr-dump.c:1794): Dumping FAILED.
	checkpoint_test.go:38: === END ===
	checkpoint_test.go:175: criu failed: type NOTIFY errno 0
		log file: /tmp/criu137289497/dump.log

@cyphar
Copy link
Member

cyphar commented Feb 26, 2018

I'm not too sure about the CRIU error @tiborvass -- you should ping @avagin.

@tiborvass
Copy link
Contributor

@cyphar I opened #1745, not sure if it's related to this one.

@AkihiroSuda
Copy link
Member

Closing as outdated

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants