Skip to content

Commit

Permalink
test: bump timeouts due to later lldbs
Browse files Browse the repository at this point in the history
Signed-off-by: Anton Whalley <anton@venshare.com>
  • Loading branch information
No9 committed Aug 17, 2022
1 parent 3b5a489 commit ff75da7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function SessionOutput(session, stream, timeout) {
this.waiting = false;
this.waitQueue = [];
let buf = '';
this.timeout = timeout || 10000;
this.timeout = timeout || 20000;
this.session = session;

this.flush = function flush() {
Expand Down Expand Up @@ -170,7 +170,7 @@ SessionOutput.prototype.linesUntil = function linesUntil(regexp, callback) {

function Session(options) {
EventEmitter.call(this);
const timeout = parseInt(process.env.TEST_TIMEOUT) || 10000;
const timeout = parseInt(process.env.TEST_TIMEOUT) || 20000;
const lldbBin = process.env.TEST_LLDB_BINARY || 'lldb';
const env = Object.assign({}, process.env);

Expand Down
2 changes: 1 addition & 1 deletion test/plugin/workqueue-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function testWorkqueueCommands(t, sess) {
}

tape('v8 workqueue commands', (t) => {
t.timeoutAfter(15000);
t.timeoutAfter(30000);

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

0 comments on commit ff75da7

Please sign in to comment.