Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rename a test to clearly show that it should properly detect bogus input files
[simgrid.git] / teshsuite / simdag / platforms / bogus_two_hosts_asymetric-2.xml
diff --git a/teshsuite/simdag/platforms/bogus_two_hosts_asymetric-2.xml b/teshsuite/simdag/platforms/bogus_two_hosts_asymetric-2.xml
new file mode 100644 (file)
index 0000000..7577cda
--- /dev/null
@@ -0,0 +1,29 @@
+
+<!-- THIS FILE IS INVALID.
+
+It declares a route alice->bob and another bob->alice, both being different.
+It is used to check that this (bogus) file is detected as is (see
+two_hosts_asymetric.tesh) -->
+
+<?xml version='1.0'?>
+ <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
+ <platform version="3">
+ <AS  id="AS0"  routing="Full">
+   <host id="bob" power="1Gf"/>
+   <host id="alice" power="500Mf"/>
+   <link id="link1" bandwidth="125MBps" latency="50us"/>
+   <link id="link2" bandwidth="125MBps" latency="50us"/>
+   <link id="link3" bandwidth="125MBps" latency="50us"/>
+   <link id="link4" bandwidth="125MBps" latency="50us"/>
+   
+   <route src="bob" dst="alice">
+     <link_ctn id="link1"/><link_ctn id="link2"/><link_ctn id="link4"/>
+   </route>
+
+   <route src="alice" dst="bob">
+     <link_ctn id="link4"/><link_ctn id="link3"/><link_ctn id="link1"/>
+   </route>
+
+ </AS>
+ </platform>