source: branches/reconfiguration/modules/dspin_router/caba/test/simple_recovery_routing_test/test.sh @ 942

Last change on this file since 942 was 942, checked in by cfuguet, 9 years ago

reconf: improve unitary tests for dspin_router

  • Property svn:executable set to *
File size: 550 bytes
Line 
1#!/bin/bash
2
3make mkconfig
4
5SOFT=build/soft.elf
6make $SOFT
7
8# batch mode => no xterm or frame buffer windows
9export SOCLIB_TTY=FILES
10export SOCLIB_FB=HEADLESS
11#export SOCLIB_GDB=
12export DISTRIBUTED_BOOT=1
13PLATFORM=../../../../../platforms/tsar_generic_iob
14SIMULATOR=$PLATFORM/simul.x
15$SIMULATOR -DSOFT $SOFT -DISK /dev/null -FAULTY_ROUTER 0 1 1 > output/log 2>&1
16soclib-cleanup-terms &> /dev/null
17mv term0 output/term
18grep -q "success" output/term
19if [ $? == 0 ];
20        then echo $(basename $PWD) ": Success";
21        else echo $(basename $PWD) ": Failure";
22fi;
Note: See TracBrowser for help on using the repository browser.