scaproust 0.3.2

Nanomsg scalability protocols implementation in rust. Various messaging patterns over pluggable transports
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

EXAMPLE_PATH="$( cd "$COMPAT_PATH/../target/debug/examples" ; pwd -P )"

NO_COLOR='\033[0m' 
RED_COLOR='\033[0;31m'
GREEN_COLOR='\033[0;32m'

function echo_test_case_succeeded {
    echo -e "$1 ${GREEN_COLOR}SUCCEEDED${NO_COLOR}" 
}

function echo_test_case_failed {
    echo -e "$1 ${RED_COLOR}FAILED !${NO_COLOR}" 
    ps auxwww | grep ${EXAMPLE_PATH} | grep -v grep
    ps auxwww | grep nanocat | grep -v grep
}