summaryrefslogtreecommitdiffstats
path: root/jrt_test/src/tests/mockup-invoke/dotest.sh
blob: 3bd15b6437faacf0c7e4b501a603a2ed0df9c2d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

sh $BINREF/progctl.sh progdefs.sh start server 1

$BINREF/runjava PollRPCServer tcp/localhost:$PORT_0
$BINREF/runjava MockupInvoke tcp/localhost:$PORT_0 aaa bbb >  out.txt
$BINREF/runjava MockupInvoke tcp/localhost:$PORT_0 bbb ccc >> out.txt
$BINREF/runjava MockupInvoke tcp/localhost:$PORT_0 ccc ddd >> out.txt
$BINREF/runjava MockupInvoke tcp/localhost:$PORT_0 ddd eee >> out.txt
$BINREF/runjava MockupInvoke tcp/localhost:$PORT_0 eee fff >> out.txt

sh $BINREF/progctl.sh progdefs.sh stop server 1

if diff -u out.txt ref.txt; then
    exit 0
else
    exit 1
fi