mirror of https://github.com/nodejs/node.git
Expose fast-buffer bug in tests
parent
ff027d571b
commit
8078ed1f86
|
@ -294,3 +294,19 @@ assert.equal(dot[1], 0xfe);
|
||||||
assert.equal(dot[2], 0x2e);
|
assert.equal(dot[2], 0x2e);
|
||||||
assert.equal(dot[3], 0x00);
|
assert.equal(dot[3], 0x00);
|
||||||
assert.equal(dot.toString('base64'), '//4uAA==');
|
assert.equal(dot.toString('base64'), '//4uAA==');
|
||||||
|
|
||||||
|
|
||||||
|
// Creating buffers larger than pool size.
|
||||||
|
s = ""
|
||||||
|
for (i = 0; i < Buffer.poolSize + 5; i++) {
|
||||||
|
s += "h";
|
||||||
|
}
|
||||||
|
b = Buffer(s);
|
||||||
|
sb = b.toString();
|
||||||
|
assert.equal(sb, s);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue