----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/69132/#review209941 -----------------------------------------------------------
FAIL: Some of the unit tests failed. Please check the relevant logs. Reviews applied: `['69132']` Failed command: `Start-MesosCITesting` All the build artifacts available at: http://dcos-win.westus2.cloudapp.azure.com/artifacts/mesos-reviewbot-testing/2515/mesos-review-69132 Relevant logs: - [mesos-tests.log](http://dcos-win.westus2.cloudapp.azure.com/artifacts/mesos-reviewbot-testing/2515/mesos-review-69132/logs/mesos-tests.log): ``` I1024 00:17:09.566740 24808 slave.cpp:6646] Shutting down executor '9ba3eb1b-233a-4325-b22d-fc06d4d63151' of framework 871fdcf2-c8c2-498e-a38d-678a242f9607-0000 at executor(1)@192.10.1.5:58202 I1024 00:17:09.568745 24808 slave.cpp:915] Agent terminating I1024 00:17:09.568745 29852 master.cpp:11045] Removing task 9ba3eb1b-233a-4325-b22d-fc06d4d63151 with resources cpus(allocated: *):4; mem(allocated: *):2048; disk(allocated: *):1024; ports(allocated: *):[31000-32000] of framework 871fdcf2-c8c2-498e-a38d-678a242f9607-0000 on agent 871fdcf2-c8c2-498e-a38d-678a242f9607-S0 at slave(461)@192.10.1.5:56414 (windows-02.aa0q4n2kgcyefckmv0xukjvy4f.xx.internal.cloudapp.net) W1024 00:17:09.568745 24808 slave.cpp:3923] Ignoring shutdown framework 871fdcf2-c8c2-498e-a38d-678a242f9607-0000 because it is terminating I1024 00:17:09.570752 29852 master.cpp:1266] Agent 871fdcf2-c8c2-498e-a38d-678a242f9607-S0 at slave(461)@192.10.1.5:56414 (windows-02.aa0q4n2kgcyefckmv0xukjvy4f.xx.internal.cloudapp.net) disconnected I1024 00:17:09.570752 29852 master.cpp:3282] Disconnecting agent 871fdcf2-c8c2-498e-a38d-678a242f9607-S0 at slave(461)@192.10.1.5:56414 (windows-02.aa0q4n2kgcyefckmv0xukjvy4f.xx.internal.cloudapp.net) I1024 00:17:09.571743 29852 master.cpp:3301] Deactivating agent 871fdcf2-c8c2-498e-a38d-678a242f9607-S0 at slave(461)@192.10.1.5:56414 (windows-02.aa0q4n2kgcyefckmv0xukjvy4f.xx.internal.cloudapp.net) I1024 00:17:09.571743 14076 hierarchical.cpp:359] Removed framework 871fdcf2-c8c2-498e-a38d-678a242f9607-0000 I1024 00:17:09.571743 14076 hierarchical.cpp:803] Agent 871fdcf2-c8c2-498e-a38d-678a242f9607-S0 deactivated I1024 00:17:09.572746 28684 containerizer.cpp:2455] Destroying container c0987193-ade6-4cfa-b755-f649828fa433 in RUNNING state I1024 00:17:09.572746 28684 containerizer.cpp:3122] Transitioning the state of container c0987193-ade6-4cfa-b755-f649828f[ OK ] IsolationFlag/MemoryIsolatorTest.ROOT_MemUsage/0 (687 ms) [----------] 1 test from IsolationFlag/MemoryIsolatorTest (705 ms total) [----------] Global test environment tear-down [==========] 1052 tests from 103 test cases ran. (481834 ms total) [ PASSED ] 1050 tests. [ FAILED ] 2 tests, listed below: [ FAILED ] DockerFetcherPluginTest.INTERNET_CURL_FetchBlob [ FAILED ] DockerFetcherPluginTest.INTERNET_CURL_FetchImage 2 FAILED TESTS YOU HAVE 232 DISABLED TESTS a433 from RUNNING to DESTROYING I1024 00:17:09.573760 28684 launcher.cpp:166] Asked to destroy container c0987193-ade6-4cfa-b755-f649828fa433 I1024 00:17:09.675200 27832 containerizer.cpp:2961] Container c0987193-ade6-4cfa-b755-f649828fa433 has exited I1024 00:17:09.705178 29700 master.cpp:1108] Master terminating I1024 00:17:09.707191 28684 hierarchical.cpp:645] Removed agent 871fdcf2-c8c2-498e-a38d-678a242f9607-S0 I1024 00:17:10.150178 23636 process.cpp:926] Stopped the socket accept loop ``` - Mesos Reviewbot Windows On Oct. 23, 2018, 11:17 p.m., James Peach wrote: > > ----------------------------------------------------------- > This is an automatically generated e-mail. To reply, visit: > https://reviews.apache.org/r/69132/ > ----------------------------------------------------------- > > (Updated Oct. 23, 2018, 11:17 p.m.) > > > Review request for mesos, Ilya Pronin, Jacob Janco, and Jiang Yan Xu. > > > Repository: mesos > > > Description > ------- > > When we added the `filesystem/linux` isolator to the XFS isolation > tests, we broke them for older Linux distributions (specifically > CentOS 6). The `filesystem/linux` isolator needs to remount the > work directory in shared mode using `mount(8)`, but `mount(8)` > requires the mount point it is manipulating to be present in > `mtab(5)`. Since the XFS tests simply issued a `mount(2)` system > call, `mtab(5)` wasn't updated and the remount would fail. Modern > Linux distributions don't see this problem because `/` is mounted > shared by default, and `mtab(5)` is a symlink to `/proc/self/mounts` > (i.e. always in sync). > > The straightforward fix is to run `mount(8)` to make the XFS test > fixture mounts, so that `mount(8)` always sees a consistent view of > `mtab(5)`. > > > Diffs > ----- > > src/tests/containerizer/xfs_quota_tests.cpp > 084df067a8d97efdc86fc0ed878bc3f2edca06e5 > > > Diff: https://reviews.apache.org/r/69132/diff/1/ > > > Testing > ------- > > sudo make check (Fedora 28, CentOS 6) > > > Thanks, > > James Peach > >
