xref: /minix3/minix/tests/kernel/sys_vumap/run (revision c58da9fbc35f86051ff0a75e6dd91e937d83cfff)
1433d6423SLionel Sambuc#!/bin/sh
2433d6423SLionel Sambuc
3433d6423SLionel Sambucmake >/dev/null
4433d6423SLionel Sambuc
5433d6423SLionel Sambucecho -n "Kernel test (sys_vumap): "
6*c58da9fbSDavid van Moolenbroekminix-service up `pwd`/vumaprelay -config system.conf -label vumaprelay -script /etc/rs.single
7*c58da9fbSDavid van Moolenbroekminix-service up `pwd`/vumaptest -config system.conf -script /etc/rs.single 2>/dev/null
8433d6423SLionel Sambucr=$?
9*c58da9fbSDavid van Moolenbroekminix-service down vumaprelay
10433d6423SLionel Sambuc
11433d6423SLionel Sambucif [ $r -ne 0 ]; then
12433d6423SLionel Sambuc  echo "failure"
13433d6423SLionel Sambuc  exit 1
14433d6423SLionel Sambucfi
15433d6423SLionel Sambuc
16433d6423SLionel Sambucecho "ok"
17