Files
rippled/scripts/build-and-test.sh
2016-04-22 11:38:11 -04:00

12 lines
368 B
Bash
Executable File

#!/bin/bash -u
# We use set -e and bash with -u to bail on first non zero exit code of any
# processes launched or upon any unbound variable
set -e
__dirname=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
echo "using toolset: $CC"
echo "using variant: $VARIANT"
$BOOST_ROOT/bjam toolset=$CC variant=$VARIANT
`find . -name "core_tests"`
`find . -name "http_tests"`