Skip to content

Commit bf7a154

Browse files
kvakilcclaussNo9
committed
Changes & timeout bumps from #403
Refs: #403 Co-authored-by: Christian Clauss <[email protected]> Co-authored-by: Anton Whalley <[email protected]>
1 parent e653a9d commit bf7a154

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/push.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
# This errors due to a glibc incompatibility.
3535
- {os: ubuntu-18.04, node: {version: 18.x}}
3636
steps:
37-
- uses: actions/checkout@v1
37+
- uses: actions/checkout@v3
3838
- name: Use Node.js ${{ matrix.node.version }} ${{ matrix.node.mirror }}
3939
uses: No9/setup-node@mirror
4040
with:
@@ -98,15 +98,15 @@ jobs:
9898
cat ./coverage-js.info > ./coverage.info
9999
cat ./coverage-cc.info >> ./coverage.info
100100
- name: Upload coverage report to Codecov
101-
uses: codecov/codecov-action@v1
101+
uses: codecov/codecov-action@v3
102102
with:
103103
file: ./coverage.info
104104
linter:
105-
runs-on: [ubuntu-latest]
105+
runs-on: ubuntu-latest
106106
steps:
107-
- uses: actions/checkout@v1
107+
- uses: actions/checkout@v3
108108
- name: Use Node.js LTS
109-
uses: actions/setup-node@v1
109+
uses: actions/setup-node@v3
110110
with:
111111
node-version: 18.x
112112
- name: npm install, build, and test

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 || 20000;
45+
this.timeout = timeout || 40000;
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) || 20000;
173+
const timeout = parseInt(process.env.TEST_TIMEOUT) || 40000;
174174
const lldbBin = process.env.TEST_LLDB_BINARY || 'lldb';
175175
const env = Object.assign({}, process.env);
176176

test/plugin/inspect-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ function verifyInvalidExpr(t, sess) {
668668
}
669669

670670
tape('v8 inspect', (t) => {
671-
t.timeoutAfter(15000);
671+
t.timeoutAfter(30000);
672672

673673
const sess = common.Session.create('inspect-scenario.js');
674674

test/plugin/stack-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const tape = require('tape');
55
const common = require('../common');
66

77
tape('v8 stack', (t) => {
8-
t.timeoutAfter(15000);
8+
t.timeoutAfter(45000);
99

1010
const sess = common.Session.create('stack-scenario.js');
1111
sess.waitBreak(() => {

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(30000);
29+
t.timeoutAfter(60000);
3030

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

0 commit comments

Comments
 (0)