Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] updating tesh's that check graph configuration correctness
[simgrid.git] / examples / msg / tracing / ms.tesh
index b3770d9..151fbb1 100644 (file)
@@ -9,7 +9,16 @@ $ $SG_TEST_EXENV ${bindir:=.}/tracing/ms$EXEEXT --cfg=tracing:1 --cfg=tracing/bu
 > [0.000000] [xbt_cfg/INFO] Configuration change: Set 'tracing/uncategorized' to '1'
 > [0.000000] [xbt_cfg/INFO] Configuration change: Set 'triva/categorized' to 'tracing/ms.cat.plist'
 > [0.000000] [xbt_cfg/INFO] Configuration change: Set 'triva/uncategorized' to 'tracing/ms.uncat.plist'
-> [0.000000] [instr_config/INFO] Tracing resource utilization active, network/optim configuration now set to Full.
+> [4.485137] [msg_test/INFO] Declared tracing categories:
+> [4.485137] [msg_test/INFO] request
+> [4.485137] [msg_test/INFO] finalize
+> [4.485137] [msg_test/INFO] report
+> [4.485137] [msg_test/INFO] compute
+> [4.485137] [msg_test/INFO] Declared marks:
+> [4.485137] [msg_test/INFO] msmark
+
+p Not tracing master/slave application
+$ $SG_TEST_EXENV ${bindir:=.}/tracing/ms$EXEEXT ${srcdir:=.}/tracing/platform.xml ${srcdir:=.}/tracing/deployment.xml
 
 p Testing tracing by process 
 $ $SG_TEST_EXENV ${bindir:=.}/tracing/ms$EXEEXT --cfg=tracing:1 --cfg=tracing/msg/process:1 --cfg=tracing/buffer:1 --cfg=tracing/filename:tracing/ms.trace --cfg=tracing/categorized:1 --cfg=tracing/uncategorized:1 --cfg=triva/categorized:tracing/ms.cat.plist --cfg=triva/uncategorized:tracing/ms.uncat.plist ${srcdir:=.}/tracing/platform.xml ${srcdir:=.}/tracing/deployment.xml
@@ -21,39 +30,45 @@ $ $SG_TEST_EXENV ${bindir:=.}/tracing/ms$EXEEXT --cfg=tracing:1 --cfg=tracing/ms
 > [0.000000] [xbt_cfg/INFO] Configuration change: Set 'tracing/uncategorized' to '1'
 > [0.000000] [xbt_cfg/INFO] Configuration change: Set 'triva/categorized' to 'tracing/ms.cat.plist'
 > [0.000000] [xbt_cfg/INFO] Configuration change: Set 'triva/uncategorized' to 'tracing/ms.uncat.plist'
-> [0.000000] [instr_config/INFO] Tracing resource utilization active, network/optim configuration now set to Full.
+> [4.485137] [msg_test/INFO] Declared tracing categories:
+> [4.485137] [msg_test/INFO] request
+> [4.485137] [msg_test/INFO] finalize
+> [4.485137] [msg_test/INFO] report
+> [4.485137] [msg_test/INFO] compute
+> [4.485137] [msg_test/INFO] Declared marks:
+> [4.485137] [msg_test/INFO] msmark
 
 $ $SG_TEST_EXENV cat tracing/ms.uncat.plist
 > {
->   node = (LINK, HOST, );
->   edge = (HOST-LINK, LINK-HOST, LINK-LINK, );
+>   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 = (HOST-LINK, LINK-HOST, LINK-LINK, );
+>   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");
 >   };
 > }