Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
new scripts for Cdash
authornavarrop <navarrop@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 22 Dec 2009 14:56:37 +0000 (14:56 +0000)
committernavarrop <navarrop@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 22 Dec 2009 14:56:37 +0000 (14:56 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@6910 48e7efb5-ca39-0410-a469-dd3cf9ba447f

buildtools/ctest/reservall.sh [deleted file]
buildtools/ctest/test_simgrid_pipol.sh [deleted file]
buildtools/ctest/test_simgrid_pipol2.sh [deleted file]
buildtools/ctest/verif.sh [deleted file]
buildtools/ctest/verif_all.sh [deleted file]
buildtools/ctest/verif_mac.sh [deleted file]

diff --git a/buildtools/ctest/reservall.sh b/buildtools/ctest/reservall.sh
deleted file mode 100755 (executable)
index 9feb244..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#! /bin/sh
-
-ssh pipol pipol-sub esn i386-linux-ubuntu-jaunty.dd.gz none 02:00 /home/mescal/navarro/script/verif.sh
-ssh pipol pipol-sub esn i386-linux-ubuntu-karmic.dd.gz none 02:00 /home/mescal/navarro/script/verif.sh
-ssh pipol pipol-sub esn amd64-linux-ubuntu-jaunty.dd.gz none 02:00 /home/mescal/navarro/script/verif.sh
-ssh pipol pipol-sub esn amd64-linux-ubuntu-karmic.dd.gz none 02:00 /home/mescal/navarro/script/verif.sh
-
-ssh pipol pipol-sub esn i386-linux-debian-etch.dd.gz none 02:00 /home/mescal/navarro/script/verif.sh
-ssh pipol pipol-sub esn i386-linux-debian-lenny.dd.gz none 02:00 /home/mescal/navarro/script/verif.sh
-ssh pipol pipol-sub esn amd64-linux-debian-etch.dd.gz none 02:00 /home/mescal/navarro/script/verif.sh
-ssh pipol pipol-sub esn amd64-linux-debian-lenny.dd.gz none 02:00 /home/mescal/navarro/script/verif.sh
-
-ssh pipol pipol-sub esn i386-linux-fedora-core11.dd.gz none 02:00 /home/mescal/navarro/script/verif.sh
-ssh pipol pipol-sub esn amd64-linux-fedora-core11.dd.gz none 02:00 /home/mescal/navarro/script/verif.sh
-ssh pipol pipol-sub esn i386-linux-mandriva-2009_powerpack.dd.gz none 02:00 /home/mescal/navarro/script/verif.sh
-ssh pipol pipol-sub esn amd64-linux-mandriva-2009_powerpack.dd.gz none 02:00 /home/mescal/navarro/script/verif.sh
-
-ssh pipol pipol-sub esn i386_mac-mac-osx-server-leopard.dd.gz none 02:00 /home/mescal/navarro/script/verif.sh
diff --git a/buildtools/ctest/test_simgrid_pipol.sh b/buildtools/ctest/test_simgrid_pipol.sh
deleted file mode 100755 (executable)
index e82be52..0000000
+++ /dev/null
@@ -1,91 +0,0 @@
-#! /bin/sh
-
-#PIPOL esn i386-linux-ubuntu-jaunty.dd.gz none 02:00 --user --silent
-#PIPOL esn i386-linux-ubuntu-karmic.dd.gz none 02:00 --user --silent
-#PIPOL esn amd64-linux-ubuntu-jaunty.dd.gz none 02:00 --user --silent
-#PIPOL esn amd64-linux-ubuntu-karmic.dd.gz none 02:00 --user --silent 
-
-#PIPOL esn i386-linux-debian-etch.dd.gz none 02:00 --user --silent
-#PIPOL esn i386-linux-debian-lenny.dd.gz none 02:00 --user --silent
-#PIPOL esn amd64-linux-debian-etch.dd.gz none 02:00 --user --silent
-#PIPOL esn amd64-linux-debian-lenny.dd.gz none 02:00 --user --silent
-
-#PIPOL esn i386-linux-fedora-core11.dd.gz none 02:00 --user --silent
-#PIPOL esn amd64-linux-fedora-core11.dd.gz none 02:00 --user --silent
-
-#PIPOL esn i386-linux-mandriva-2009_powerpack.dd.gz none 02:00 --user --silent
-#PIPOL esn amd64-linux-mandriva-2009_powerpack.dd.gz none 02:00 --user --silent
-
-#PIPOL esn i386_mac-mac-osx-server-leopard.dd.gz none 02:00 --user --silent
-
-#GET the OS name
-OS=`uname`
-node=`uname -n`
-
-# OS specific working directory 
-BASEDIR=/pipol
-DIR=$BASEDIR/$OS/$node
-
-# Clean any leftover  from previous install
-echo "remove old directory $BASEDIR/$OS/$node"
-rm -rf $BASEDIR/$OS/$node
-
-# create a new directory 
-echo "create new directory $BASEDIR/$OS/$node"
-mkdir  $BASEDIR/$OS
-mkdir  $BASEDIR/$OS/$node
-cd $BASEDIR/$OS/$node
-
-# load the simgrid directory from svn
-echo "load simgrid-svn"
-svn checkout svn://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk
-mv trunk/ simgrid
-cp -r $BASEDIR/$OS/$node/simgrid/buildtools/ctest/Cmake $BASEDIR/$OS/$node/simgrid/Cmake
-
-
-
-if [[ $OS == 'Linux' ]]; then
-       # Install dependencies Linux
-       echo "get dependencies Linux"
-       sudo aptitude install -y libtool automake1.10 autoconf libgcj10-dev gcc g++ bash flex flexml doxygen bibtex bibtool iconv bibtex2html addr2line valgrind
-       # 1er test
-       cd $BASEDIR/$OS/$node/simgrid
-       echo "./bootstrap"
-       ./bootstrap
-       echo "./configure"
-       ./configure --enable-maintainer-mode --disable-compile-optimizations
-       echo "make"
-       make 
-       echo "./checkall"
-       ./checkall
-       # 2eme test ctest
-       sudo aptitude install -y cmake
-       cd $BASEDIR/$OS/$node/simgrid/Cmake
-       cmake ./
-       ctest -D Nightly
-fi
-
-if [[ $OS == 'Darwin' ]]; then
-       # Install dependencies Mac
-       echo "get dependencies Mac"
-       fink --yes install libtool14
-        # fink --yes install doxygen 
-        fink --yes install autoconf
-       # 1er test
-       cd $BASEDIR/$OS/$node/simgrid
-       echo "./bootstrap"
-       ./bootstrap
-       echo "./configure"
-       ./configure --enable-maintainer-mode MAKE=gmake --disable-compile-optimizations
-       echo "make"
-       make 
-       echo "./checkall"
-       ./checkall
-       # 2eme test ctest
-       fink --yes install cmake
-       cd $BASEDIR/$OS/$node/simgrid/Cmake
-       cmake ./
-       ctest -D Nightly
-fi
-
-echo "Finish !"
diff --git a/buildtools/ctest/test_simgrid_pipol2.sh b/buildtools/ctest/test_simgrid_pipol2.sh
deleted file mode 100644 (file)
index 9cfb52d..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#! /bin/sh
-
-#PIPOL esn i386-linux-ubuntu-karmic.dd.gz none 02:00 --user --silent
-OS=`uname`
-mkdir /home/mescal/navarro/exec1
-mkdir /home/mescal/navarro/exec1/$OS
-
-#PIPOL esn i386_mac-mac-osx-server-leopard.dd.gz none 02:00 --user --silent
-
-mkdir /home/mescal/navarro/exec2
-
-OS=`uname`
-mkdir /home/mescal/navarro/exec1/$OS
-
-echo "Finish !"
diff --git a/buildtools/ctest/verif.sh b/buildtools/ctest/verif.sh
deleted file mode 100755 (executable)
index 41c9d23..0000000
+++ /dev/null
@@ -1,71 +0,0 @@
-#!/bin/bash
-
-#GET the OS name
-OS=`uname`
-node=`uname -n`
-
-# OS specific working directory 
-BASEDIR=/pipol
-DIR=$BASEDIR/$OS/$node
-
-# Clean any leftover  from previous install
-echo "remove old directory $BASEDIR/$OS/$node"
-rm -rf $BASEDIR/$OS/$node
-
-# create a new directory 
-echo "create new directory $BASEDIR/$OS/$node"
-mkdir  $BASEDIR/$OS
-mkdir  $BASEDIR/$OS/$node
-cd $BASEDIR/$OS/$node
-
-# load the simgrid directory from svn
-echo "load simgrid-svn"
-svn checkout svn://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk
-mv trunk/ simgrid
-cp -r $BASEDIR/$OS/$node/simgrid/buildtools/ctest/Cmake $BASEDIR/$OS/$node/simgrid/Cmake
-
-if [[ $OS == 'Linux' ]]; then
-       # Install dependencies Linux
-       echo "get dependencies Linux"
-       sudo aptitude install -y libtool automake1.10 autoconf libgcj10-dev gcc g++ bash flex flexml doxygen bibtex bibtool iconv bibtex2html addr2line valgrind
-       # 1er test
-       cd $BASEDIR/$OS/$node/simgrid
-       echo "./bootstrap"
-       ./bootstrap
-       echo "./configure"
-       ./configure --enable-maintainer-mode --disable-compile-optimizations
-       echo "make"
-       make 
-       echo "./checkall"
-       ./checkall
-       # 2eme test ctest
-       sudo aptitude install -y cmake
-       cd $BASEDIR/$OS/$node/simgrid/Cmake
-       cmake ./
-       ctest -D Experimental
-fi
-
-if [[ $OS == 'Darwin' ]]; then
-       # Install dependencies Mac
-       echo "get dependencies Mac"
-       fink --yes install libtool14
-        # fink --yes install doxygen 
-        fink --yes install autoconf
-       # 1er test
-       cd $BASEDIR/$OS/$node/simgrid
-       echo "./bootstrap"
-       ./bootstrap
-       echo "./configure"
-       ./configure --enable-maintainer-mode MAKE=gmake --disable-compile-optimizations
-       echo "make"
-       make 
-       echo "./checkall"
-       ./checkall
-       # 2eme test ctest
-       fink --yes install cmake
-       cd $BASEDIR/$OS/$node/simgrid/Cmake
-       cmake ./
-       ctest -D Experimental
-fi
-
-echo "Done!"
diff --git a/buildtools/ctest/verif_all.sh b/buildtools/ctest/verif_all.sh
deleted file mode 100755 (executable)
index 0a47f47..0000000
+++ /dev/null
@@ -1,85 +0,0 @@
-#!/bin/bash
-
-#GET the OS name
-OS=`uname`
-node=`uname -n`
-
-# OS specific working directory 
-BASEDIR=/pipol
-DIR=$BASEDIR/$OS/$node
-
-# Clean any leftover  from previous install
-echo "remove old directory $BASEDIR/$OS/$node"
-rm -rf $BASEDIR/$OS/$node
-
-# create a new directory 
-echo "create new directory $BASEDIR/$OS/$node"
-mkdir  $BASEDIR/$OS/$node
-cd $BASEDIR/$OS/$node
-
-# load the simgrid directory
-echo "untar simgrid-3.3.4-svn.tar.gz"
-cp /home/mescal/navarro/simgrid-3.3.4-svn.tar.gz $BASEDIR/$OS/$node/simgrid-3.3.4-svn.tar.gz
-tar -xzf ./simgrid-3.3.4-svn.tar.gz
-echo "untar Cmake.tar.gz"
-cp /home/mescal/navarro/Cmake.tar.gz $BASEDIR/$OS/$node/simgrid-3.3.4-svn/Cmake.tar.gz
-cd $BASEDIR/$OS/$node/simgrid-3.3.4-svn
-tar -xzf $BASEDIR/$OS/$node/simgrid-3.3.4-svn/Cmake.tar.gz
-
-# install cmake
-sudo aptitude install -y cmake
-
-# 1er test
-cd $BASEDIR/$OS/$node/simgrid-3.3.4-svn
-echo "make clean"
-make clean
-echo "./configure"
-./configure
-echo "make"
-make 
-
-cd $BASEDIR/$OS/$node/simgrid-3.3.4-svn/Cmake
-cmake ./
-ctest -D Experimental
-
-
-# 2eme test supernovae
-cd $BASEDIR/$OS/$node/simgrid-3.3.4-svn
-echo "make clean"
-make clean
-echo "./configure --enable-supernovae"
-./configure --enable-supernovae
-echo "make"
-make 
-
-cd $BASEDIR/$OS/$node/simgrid-3.3.4-svn/Cmake
-cmake ./
-ctest -D Experimental
-
-# 3eme test pthread
-cd $BASEDIR/$OS/$node/simgrid-3.3.4-svn
-echo "make clean"
-make clean
-echo "./configure --with-pthread"
-./configure --with-pthread
-echo "make"
-make 
-
-cd $BASEDIR/$OS/$node/simgrid-3.3.4-svn/Cmake
-cmake ./
-ctest -D Experimental
-
-# 4eme test disable compile optimizations
-cd $BASEDIR/$OS/$node/simgrid-3.3.4-svn
-echo "make clean"
-make clean
-echo "./configure --disable-compile-optimizations"
-./configure --disable-compile-optimizations
-echo "make"
-make 
-
-cd $BASEDIR/$OS/$node/simgrid-3.3.4-svn/Cmake
-cmake ./
-ctest -D Experimental
-
-echo "Done!"
diff --git a/buildtools/ctest/verif_mac.sh b/buildtools/ctest/verif_mac.sh
deleted file mode 100755 (executable)
index 8f58f3d..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/bin/bash
-
-#GET the OS name
-OS=`uname`
-node=`uname -n`
-
-# OS specific working directory 
-BASEDIR=/pipol
-DIR=$BASEDIR/$OS/$node
-
-# Clean any leftover  from previous install
-echo "remove old directory $BASEDIR/$OS/$node"
-rm -rf $BASEDIR/$OS/$node
-
-# create a new directory 
-echo "create new directory $BASEDIR/$OS/$node"
-mkdir  $BASEDIR/$OS
-mkdir  $BASEDIR/$OS/$node
-cd $BASEDIR/$OS/$node
-
-# load the simgrid directory from svn
-echo "load simgrid-svn"
-svn checkout svn://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk
-mv trunk/ simgrid
-cp -r $BASEDIR/$OS/$node/simgrid/buildtools/ctest/Cmake $BASEDIR/$OS/$node/simgrid/Cmake
-
-# Install dependencies
-echo "get dependencies"
-fink --yes install -y libtool automake1.10 autoconf libgcj10-dev gcc g++ bash flex flexml doxygen bibtex bibtool iconv bibtex2html addr2line valgrind
-
-# 1er test
-cd $BASEDIR/$OS/$node/simgrid
-echo "./bootstrap"
-./bootstrap
-echo "./configure"
-./configure --enable-maintainer-mode --disable-compile-optimizations
-echo "make"
-make 
-echo "./checkall"
-./checkall
-
-# 2eme test ctest
-fink --yes install cmake
-cd $BASEDIR/$OS/$node/simgrid/Cmake
-cmake ./
-ctest -D Experimental
-
-echo "Done!"