From: schnorr Date: Wed, 23 May 2012 21:59:54 +0000 (+0200) Subject: [trace] updating tesh's that check graph configuration correctness X-Git-Tag: v3_7_1~57 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/16c2b29453531bcbaacdd1a90498b52aab537549 [trace] updating tesh's that check graph configuration correctness --- diff --git a/examples/msg/tracing/categories.tesh b/examples/msg/tracing/categories.tesh index 2cd60cc816..74468ada49 100644 --- a/examples/msg/tracing/categories.tesh +++ b/examples/msg/tracing/categories.tesh @@ -13,35 +13,35 @@ $ $SG_TEST_EXENV ${bindir:=.}/tracing/categories$EXEEXT --cfg=tracing:1 --cfg=tr $ $SG_TEST_EXENV cat tracing/categories.cat.plist > { -> node = (LINK, HOST, ); -> edge = (0-LINK4-HOST1, 0-HOST1-LINK4, 0-LINK4-LINK4, ); +> node = ("HOST","LINK"); +> edge = ("0-LINK4-LINK4","0-HOST1-LINK4","0-LINK4-HOST1"); > > host = { -> type = square; -> size = power; -> values = (prequest, pfinalize, pcompute, pdata, ); +> type = "square"; +> size = "power"; +> values = ("pdata","pcompute","pfinalize","prequest"); > }; > link = { -> type = rhombus; -> size = bandwidth; -> values = (brequest, bfinalize, bcompute, bdata, ); +> type = "rhombus"; +> size = "bandwidth"; +> values = ("bdata","bcompute","bfinalize","brequest"); > }; > } $ $SG_TEST_EXENV cat tracing/categories.uncat.plist > { -> node = (LINK, HOST, ); -> edge = (0-LINK4-HOST1, 0-HOST1-LINK4, 0-LINK4-LINK4, ); +> node = ("HOST","LINK"); +> edge = ("0-LINK4-LINK4","0-HOST1-LINK4","0-LINK4-HOST1"); > > host = { -> type = square; -> size = power; -> values = (power_used); +> type = "square"; +> size = "power"; +> values = ("power_used"); > }; > link = { -> type = rhombus; -> size = bandwidth; -> values = (bandwidth_used); +> type = "rhombus"; +> size = "bandwidth"; +> values = ("bandwidth_used"); > }; > } diff --git a/examples/msg/tracing/ms.tesh b/examples/msg/tracing/ms.tesh index 171732f80b..151fbb11a8 100644 --- a/examples/msg/tracing/ms.tesh +++ b/examples/msg/tracing/ms.tesh @@ -40,35 +40,35 @@ $ $SG_TEST_EXENV ${bindir:=.}/tracing/ms$EXEEXT --cfg=tracing:1 --cfg=tracing/ms $ $SG_TEST_EXENV cat tracing/ms.uncat.plist > { -> node = (LINK, HOST, ); -> edge = (0-HOST1-LINK13, 0-LINK13-HOST1, 0-LINK13-LINK13, ); +> node = ("HOST","LINK"); +> edge = ("0-LINK13-LINK13","0-LINK13-HOST1","0-HOST1-LINK13"); > > host = { -> type = square; -> size = power; -> values = (power_used); +> type = "square"; +> size = "power"; +> values = ("power_used"); > }; > link = { -> type = rhombus; -> size = bandwidth; -> values = (bandwidth_used); +> type = "rhombus"; +> size = "bandwidth"; +> values = ("bandwidth_used"); > }; > } $ $SG_TEST_EXENV cat tracing/ms.cat.plist > { -> node = (LINK, HOST, ); -> edge = (0-HOST1-LINK13, 0-LINK13-HOST1, 0-LINK13-LINK13, ); +> node = ("HOST","LINK"); +> edge = ("0-LINK13-LINK13","0-LINK13-HOST1","0-HOST1-LINK13"); > > host = { -> type = square; -> size = power; -> values = (prequest, pfinalize, preport, pcompute, ); +> type = "square"; +> size = "power"; +> values = ("pcompute","preport","pfinalize","prequest"); > }; > link = { -> type = rhombus; -> size = bandwidth; -> values = (brequest, bfinalize, breport, bcompute, ); +> type = "rhombus"; +> size = "bandwidth"; +> values = ("bcompute","breport","bfinalize","brequest"); > }; > }