mirror of
https://github.com/boostorg/utility.git
synced 2025-05-08 18:34:02 +00:00
Compile with Borland, re-enable failing tests
[SVN r9136]
This commit is contained in:
parent
ac4798b16c
commit
ff01e36d12
@ -6,6 +6,7 @@
|
|||||||
// See http://www.boost.org for most recent version including documentation.
|
// See http://www.boost.org for most recent version including documentation.
|
||||||
//
|
//
|
||||||
// Revision History
|
// Revision History
|
||||||
|
// 11 Feb 2001 Compile with Borland, re-enable failing tests (David Abrahams)
|
||||||
// 29 Jan 2001 Initial revision (David Abrahams)
|
// 29 Jan 2001 Initial revision (David Abrahams)
|
||||||
|
|
||||||
#include <boost/half_open_range.hpp>
|
#include <boost/half_open_range.hpp>
|
||||||
@ -140,7 +141,6 @@ void category_test_2(
|
|||||||
assert(!greater(ri,rj));
|
assert(!greater(ri,rj));
|
||||||
assert(!less(ri,rj));
|
assert(!less(ri,rj));
|
||||||
}
|
}
|
||||||
#if 0
|
|
||||||
else if (one_empty)
|
else if (one_empty)
|
||||||
{
|
{
|
||||||
const range& empty = ri.empty() ? ri : rj;
|
const range& empty = ri.empty() ? ri : rj;
|
||||||
@ -184,7 +184,6 @@ void category_test_2(
|
|||||||
assert(greater_equal(ri,rj));
|
assert(greater_equal(ri,rj));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -305,10 +304,10 @@ void test(T x0, T x1, T x2, T x3)
|
|||||||
template <class Integer>
|
template <class Integer>
|
||||||
void test_integer(Integer* = 0) // default arg works around MSVC bug
|
void test_integer(Integer* = 0) // default arg works around MSVC bug
|
||||||
{
|
{
|
||||||
const Integer a = 0;
|
Integer a = 0;
|
||||||
const Integer b = a + unsigned_random(128 - a);
|
Integer b = a + unsigned_random(128 - a);
|
||||||
const Integer c = b + unsigned_random(128 - b);
|
Integer c = b + unsigned_random(128 - b);
|
||||||
const Integer d = c + unsigned_random(128 - c);
|
Integer d = c + unsigned_random(128 - c);
|
||||||
|
|
||||||
test(a, b, c, d);
|
test(a, b, c, d);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user