From: Frederic Suter Date: Fri, 26 Feb 2016 11:21:13 +0000 (+0100) Subject: kill ugly deprecated launcher X-Git-Tag: v3_13~647^2~16 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/615918206a70afb9f6c3fe5b1c8ea66259a0e7b7 kill ugly deprecated launcher --- diff --git a/examples/msg/chord/CMakeLists.txt b/examples/msg/chord/CMakeLists.txt index c0a4dd85d1..a931a21709 100644 --- a/examples/msg/chord/CMakeLists.txt +++ b/examples/msg/chord/CMakeLists.txt @@ -18,5 +18,4 @@ set(examples_src set(bin_files ${bin_files} ${CMAKE_CURRENT_SOURCE_DIR}/generate.py - ${CMAKE_CURRENT_SOURCE_DIR}/run_chord PARENT_SCOPE) diff --git a/examples/msg/chord/run_chord b/examples/msg/chord/run_chord deleted file mode 100755 index 8c3049b2e6..0000000000 --- a/examples/msg/chord/run_chord +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/bash - -# This script runs Chord with the specified number of nodes. -# Usage: ./run_chord nb_nodes -# The platform file is chosen as the smallest platform of the files -# examples/platforms/cluster_with_*_hosts.xml that contains enough nodes. - -# check arguments number -if [ $# != 1 ]; then - echo "Usage: ./run_chord nb_nodes" - exit 1 -fi - -# pick an appropriate platform file -if [ $1 -le 100 ]; then - platform=100 -else - if [ $1 -le 1000 ]; then - platform=1000 - else - if [ $1 -le 10000 ]; then - platform=10000 - else - if [ $1 -le 100000 ]; then - platform=100000 - else - if [ $1 -le 300000 ]; then - platform=300000 - else - echo "Cannot find a platform file large enough." - exit 2 - fi - fi - fi - fi -fi - -# set up the deployment file -nb_lines=$[ $1 + 3] -head -n $nb_lines chord300000.xml > tmp_depl.xml -echo "" >> tmp_depl.xml - -# run Chord -./chord -nb_bits=24 -timeout=50 "../../platforms/cluster_with_${platform}_hosts.xml" tmp_depl.xml - -# cleanup -# rm tmp_depl.xml -