You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@mesos.apache.org by "Jan Schlicht (JIRA)" <ji...@apache.org> on 2015/12/01 17:00:11 UTC

[jira] [Created] (MESOS-4032) SlaveRecoveryTest/0.Reboot fails under CentOS 7.1 with libevent & SSL enabled.

Jan Schlicht created MESOS-4032:
-----------------------------------

             Summary: SlaveRecoveryTest/0.Reboot fails under CentOS 7.1 with libevent & SSL enabled.
                 Key: MESOS-4032
                 URL: https://issues.apache.org/jira/browse/MESOS-4032
             Project: Mesos
          Issue Type: Bug
         Environment: CentOS 7.1, {{--enable-libevent --enable-ssl}}
            Reporter: Jan Schlicht


Running {{sudo ./bin/mesos-tests.sh}} has SlaveRecoveryTest/0.Reboot failing. A virtual env was used to run the tests.

Vagrantfile generator:
{noformat}
cat << EOF > Vagrantfile
# -*- mode: ruby -*-" >
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
  # Disable shared folder to prevent certain kernel module dependencies.
  config.vm.synced_folder ".", "/vagrant", disabled: true

  config.vm.hostname = "centos71"

  config.vm.box = "bento/centos-7.1"

  config.vm.provider "virtualbox" do |vb|
    vb.memory = 8192
    vb.cpus = 8
  end

  config.vm.provision "shell", inline: <<-SHELL
     yum -y update systemd

     yum install -y tar wget
     wget http://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo -O /etc/yum.repos.d/epel-apache-maven.repo

     yum groupinstall -y "Development Tools"
     yum install -y apache-maven python-devel java-1.7.0-openjdk-devel zlib-devel libcurl-devel openssl-devel cyrus-sasl-devel cyrus-sasl-md5 apr-devel subversion-devel apr-util-devel

     yum install -y libevent-devel

     yum install -y perf nmap-ncat

     yum install -y git

     yum install -y docker
     systemctl start docker
     systemctl enable docker

  SHELL
end
EOF

vagrant up
vagrant reload

vagrant ssh -c "
git clone  https://github.com/apache/mesos.git mesos
cd mesos
git checkout -b 0.26.0-rc2 0.26.0-rc2

./bootstrap
mkdir build
cd build

../configure --enable-libevent --enable-ssl
GTEST_FILTER="" make check
sudo ./bin/mesos-tests.sh
"
{noformat}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)