mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-19 10:35:50 +00:00
* Zero lets classes efficiently compare with 0, so you can use constructors like x < zero or y != zero. * New BEAST_CONSTEXPR to handle Windows/C++11 differences regarding the constexpr specifier.
12 lines
114 B
Bash
Executable File
12 lines
114 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Runs all the tests in bin/
|
|
|
|
for f in bin/*.test
|
|
do
|
|
{
|
|
echo -e "\033[94m$f\033[0m"
|
|
$f
|
|
}
|
|
done
|