2
0
mirror of https://github.com/boostorg/hana.git synced 2026-02-02 08:52:11 +00:00

[Travis/Test] Clean up and modularization

- Properly setup build matrix
- Clean up .travis.yml
- Try building with Boost 1.57 and Boost 1.58
- Install dependencies to the deps/ subdirectory
- Reduce memory usage of test/type.cpp
- Re-enable some Fusion tests
This commit is contained in:
Louis Dionne
2015-03-16 11:42:01 -04:00
parent 52afb17a43
commit 41914809a2
34 changed files with 1058 additions and 1412 deletions

View File

@@ -295,6 +295,14 @@ int main() {
static_assert(has_operator<String, decltype(greater_equal)>{}, "");
// laws
auto strings = make<Tuple>(
BOOST_HANA_STRING(""),
BOOST_HANA_STRING("a"),
BOOST_HANA_STRING("ab"),
BOOST_HANA_STRING("abc"),
BOOST_HANA_STRING("ba"),
BOOST_HANA_STRING("abd")
);
test::TestOrderable<String>{strings};
}