mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 02:55:50 +00:00
12 lines
368 B
Bash
Executable File
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"`
|