2008-11-04 15:17:31 +00:00
|
|
|
/* Script is called once for every node log output. */
|
|
|
|
/* Input variables: Mote mote, int id, String msg. */
|
|
|
|
|
|
|
|
/* Contiki test script example */
|
|
|
|
if (msg.startsWith('Contiki')) {
|
2008-11-11 10:07:24 +00:00
|
|
|
log.testOK(); /* Report test success */
|
2008-11-04 15:17:31 +00:00
|
|
|
} else {
|
2008-11-11 10:07:24 +00:00
|
|
|
log.testFailed(); /* Report test failure */
|
2008-11-04 15:17:31 +00:00
|
|
|
}
|