Small program to write out hash config info

This commit is contained in:
Daniel James
2018-01-20 17:30:58 +00:00
parent 8b77644ea0
commit 3521c417b5
2 changed files with 16 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ project hash-tests
test-suite container_hash/hash
:
[ run hash_info.cpp : : : <test-info>always_show_run_output ]
[ compile check_float_funcs.cpp ]
[ run hash_fwd_test_1.cpp ]
[ run hash_fwd_test_2.cpp ]

15
test/hash_info.cpp Normal file
View File

@@ -0,0 +1,15 @@
// Copyright 2017 Daniel James.
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
// Not a test, just a small program to write out configuration info
#include <boost/container_hash/hash.hpp>
#include <iostream>
int main() {
std::cout << "BOOST_HASH_HAS_STRING_VIEW: "
<< BOOST_HASH_HAS_STRING_VIEW
<< std::endl;
}