Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cleanups
authoralegrand <alegrand@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 14 Sep 2007 08:35:12 +0000 (08:35 +0000)
committeralegrand <alegrand@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 14 Sep 2007 08:35:12 +0000 (08:35 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@4632 48e7efb5-ca39-0410-a469-dd3cf9ba447f

examples/bandwidth/Makefile.am [deleted file]
examples/bandwidth/bandwidth_deployment.xml [deleted file]
examples/bandwidth/test_rl.in [deleted file]
examples/bandwidth/test_sg.in [deleted file]

diff --git a/examples/bandwidth/Makefile.am b/examples/bandwidth/Makefile.am
deleted file mode 100644 (file)
index f172e6c..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-INCLUDES= -I$(top_srcdir)/include
-AM_CFLAGS=-g
-TESTS=test_rl test_sg
-EXTRA_DIST=bandwidth_deployment.txt $(TESTS)
-
-noinst_PROGRAMS=bandwidth_maestro bandwidth_sensor bandwidth_simulator
-  
-bandwidth_simulator_SOURCES=   _bandwidth_simulator.c bandwidth.c
-bandwidth_simulator_LDADD=     $(top_builddir)/src/libsimgrid.la $(top_builddir)/src/amok/libamok.la
-
-bandwidth_maestro_SOURCES=     _bandwidth_maestro.c bandwidth.c
-bandwidth_maestro_LDADD=       $(top_builddir)/src/libgras.la $(top_builddir)/src/amok/libamok.la
-
-bandwidth_sensor_SOURCES=      _bandwidth_sensor.c bandwidth.c
-bandwidth_sensor_LDADD=        $(top_builddir)/src/libgras.la $(top_builddir)/src/amok/libamok.la
-
-# Take care of generatated sources
-NAME=bandwidth
-PROCESSES= maestro sensor
-include $(top_srcdir)/examples/temps-gras-stub.mk
-
-# Cruft 
-include $(top_srcdir)/acmacro/dist-files.mk
diff --git a/examples/bandwidth/bandwidth_deployment.xml b/examples/bandwidth/bandwidth_deployment.xml
deleted file mode 100644 (file)
index 76d960c..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version='1.0'?>
-<!DOCTYPE platform_description SYSTEM "surfxml.dtd">
-<platform_description version="1">
-  <process host="Tremblay" function="sensor">
-     <argument value="4000"/>       <!-- port number -->
-  </process>
-  <process host="Ginette" function="sensor">
-     <argument value="4000"/>       <!-- port number -->
-  </process>
-  <process host="Jupiter" function="maestro">
-     <argument value="Tremblay"/>   <!-- server host -->
-     <argument value="4000"/>       <!-- port number -->
-     <argument value="Ginette"/>   <!-- server host -->
-     <argument value="4000"/>       <!-- port number -->
-  </process>
-</platform_description>
diff --git a/examples/bandwidth/test_rl.in b/examples/bandwidth/test_rl.in
deleted file mode 100755 (executable)
index dc09c1e..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#! @BASH@ -e
-if [ x@EXEEXT@ = x ] ; then 
-  exenv="libtool --mode=execute valgrind --run-libc-freeres=no "
-else
-  exenv=wine
-fi
-    
-$exenv ./bandwidth_sensor@EXEEXT@ 4000 $@&
-#$exenv ./bandwidth_sensor@EXEEXT@ 5000 $@&
-$exenv ./bandwidth_maestro@EXEEXT@ 127.0.0.1 4000 127.0.0.1 5000 $@
diff --git a/examples/bandwidth/test_sg.in b/examples/bandwidth/test_sg.in
deleted file mode 100755 (executable)
index b82ca1e..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-#! @BASH@
-if [ x@EXEEXT@ = x ] ; then
-  exenv="libtool --mode=execute valgrind"
-else
-  exenv=wine
-fi
-exec $exenv ./bandwidth_simulator@EXEEXT@ @top_srcdir@/examples/msg/small_platform.xml @srcdir@/bandwidth_deployment.xml $@