Changeset 3287 for trunk/test/utility.cc
- Timestamp:
- Jul 12, 2014, 4:07:13 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/utility.cc
r3285 r3287 71 71 72 72 void test_sort_index(test::Suite& suite); 73 void test_sum_weight(test::Suite& suite); 73 74 void test_less_nan(test::Suite& suite); 74 75 void test_ptr_compare(test::Suite& suite); … … 201 202 test_inverse(suite); 202 203 test_sort_index(suite); 204 test_sum_weight(suite); 203 205 test_less_nan(suite); 204 206 test_errno_error(suite); … … 579 581 } 580 582 583 584 void test_sum_weight(test::Suite& suite) 585 { 586 // do not run compile test 587 if (false) { 588 boost::input_iterator_archetype<double> iter; 589 utility::sum_weight(iter, iter); 590 boost::input_iterator_archetype_no_proxy<utility::DataWeight> iter2; 591 utility::sum_weight(iter2, iter2); 592 } 593 } 594 595 581 596 void test_ptr_compare(test::Suite& suite) 582 597 {
Note: See TracChangeset
for help on using the changeset viewer.