Comment out some minor unrequired tests

[SVN r81486]
This commit is contained in:
Antony Polukhin
2012-11-22 16:33:54 +00:00
parent 2ea7487806
commit 17f4b6fd4c

View File

@@ -100,14 +100,14 @@ void test_metafunctions()
test_optimized_types_to_string<float>(); test_optimized_types_to_string<float>();
test_optimized_types_to_string<std::string>(); test_optimized_types_to_string<std::string>();
test_optimized_types_to_string<char*>(); test_optimized_types_to_string<char*>();
test_optimized_types_to_string<char[5]>(); //test_optimized_types_to_string<char[5]>();
test_optimized_types_to_string<char[1]>(); //test_optimized_types_to_string<char[1]>();
test_optimized_types_to_string<unsigned char*>(); test_optimized_types_to_string<unsigned char*>();
test_optimized_types_to_string<unsigned char[5]>(); //test_optimized_types_to_string<unsigned char[5]>();
test_optimized_types_to_string<unsigned char[1]>(); //test_optimized_types_to_string<unsigned char[1]>();
test_optimized_types_to_string<signed char*>(); test_optimized_types_to_string<signed char*>();
test_optimized_types_to_string<signed char[5]>(); //test_optimized_types_to_string<signed char[5]>();
test_optimized_types_to_string<signed char[1]>(); //test_optimized_types_to_string<signed char[1]>();
test_optimized_types_to_string<boost::array<char, 1> >(); test_optimized_types_to_string<boost::array<char, 1> >();
test_optimized_types_to_string<boost::array<char, 5> >(); test_optimized_types_to_string<boost::array<char, 5> >();
test_optimized_types_to_string<boost::array<unsigned char, 1> >(); test_optimized_types_to_string<boost::array<unsigned char, 1> >();