Skip to content

Commit 5ea886a

Browse files
committed
test: bump timeouts due to later lldbs
Signed-off-by: Anton Whalley <[email protected]>
1 parent acbdb18 commit 5ea886a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/common.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function SessionOutput(session, stream, timeout) {
4242
this.waiting = false;
4343
this.waitQueue = [];
4444
let buf = '';
45-
this.timeout = timeout || 10000;
45+
this.timeout = timeout || 20000;
4646
this.session = session;
4747

4848
this.flush = function flush() {
@@ -170,7 +170,7 @@ SessionOutput.prototype.linesUntil = function linesUntil(regexp, callback) {
170170

171171
function Session(options) {
172172
EventEmitter.call(this);
173-
const timeout = parseInt(process.env.TEST_TIMEOUT) || 10000;
173+
const timeout = parseInt(process.env.TEST_TIMEOUT) || 20000;
174174
const lldbBin = process.env.TEST_LLDB_BINARY || 'lldb';
175175
const env = Object.assign({}, process.env);
176176

test/plugin/workqueue-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function testWorkqueueCommands(t, sess) {
2626
}
2727

2828
tape('v8 workqueue commands', (t) => {
29-
t.timeoutAfter(15000);
29+
t.timeoutAfter(30000);
3030

3131
const sess = common.Session.create('workqueue-scenario.js');
3232
sess.timeoutAfter

0 commit comments

Comments
 (0)