aboutsummaryrefslogtreecommitdiff
path: root/tests/redirect.at
diff options
context:
space:
mode:
Diffstat (limited to 'tests/redirect.at')
-rw-r--r--tests/redirect.at12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/redirect.at b/tests/redirect.at
index 7860736..12fb20f 100644
--- a/tests/redirect.at
+++ b/tests/redirect.at
@@ -15,16 +15,16 @@
# along with GNU pies. If not, see <http://www.gnu.org/licenses/>.
AT_SETUP([stdout redirection])
+AT_KEYWORDS([redirect])
AT_CHECK([
PIES_XFAIL_CHECK
PIES_CONTROL_INIT
-comp_pid_file=$PWD/comp.pid
outfile=$PWD/out
cat > pies.conf <<_EOT
component test {
mode respawn;
- command "$auxdir/respawn -tag respawn -append -pid $comp_pid_file";
+ command "echo pass";
stdout file "$outfile";
}
_EOT
@@ -34,8 +34,8 @@ pies --config-file control.conf --config-file pies.conf
n=0
while :
do
- if test -f $comp_pid_file; then
- lines=`wc -l $comp_pid_file | awk '{print $1}'`
+ if test -f $outfile; then
+ lines=`lines $outfile`
if test "$lines" -ge 2 ; then
break
fi
@@ -53,8 +53,8 @@ PIES_STOP
head -2 $outfile
],
[0],
-[respawn: start
-respawn: stop
+[pass
+pass
])
AT_CLEANUP

Return to:

Send suggestions and report system problems to the System administrator.