mirror of
https://github.com/dlang/phobos.git
synced 2025-05-03 08:30:33 +03:00
Reenable ancient failing unittest.
Fix unittest to not require unreasonable amounts of stack space.
This commit is contained in:
parent
7b0b64c8c0
commit
3c6efdf4e3
1 changed files with 2 additions and 4 deletions
|
@ -3897,17 +3897,15 @@ unittest
|
|||
assert(equal(result, [1,2,3,4,5,6,7]));
|
||||
}
|
||||
|
||||
// Temporarily disable this unittest due to issue 9131 on OSX/64.
|
||||
version = Issue9131;
|
||||
version(Issue9131) {} else
|
||||
unittest
|
||||
{
|
||||
struct TransientRange
|
||||
{
|
||||
dchar[128] _buf;
|
||||
dchar[] _buf;
|
||||
dstring[] _values;
|
||||
this(dstring[] values)
|
||||
{
|
||||
_buf.length = 128;
|
||||
_values = values;
|
||||
}
|
||||
@property bool empty()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue