#!/bin/sh

exec 2>&1

set -e

test_cmultiple() {
  # Build the example program against the installed development libs
  gcc -o examples/cmultiple  examples/cmultiple.c -lcalceph -pthread -lm
  echo "Build: OK"
  
  # Run the example program
  ( cd examples; ./cmultiple )
  echo "Test: OK"
}

. shunit2
