diff --git a/common.gypi b/common.gypi index b5b2d9b5fade2e..fb2f5fa19ffdda 100644 --- a/common.gypi +++ b/common.gypi @@ -579,6 +579,9 @@ '-Wl,-brtl', ], }, { # else it's `AIX` + 'variables': { + 'gcc_major': '(gcc_major)/pthread/ppc64:/opt/freeware/lib/gcc/powerpc-ibm-aix7.2.0.0/>(gcc_major)/pthread/ppc64:/opt/freeware/lib/pthread/ppc64', ], }], ], diff --git a/doc/api/test.md b/doc/api/test.md index 6c2376ee8beeb5..2dc9ad967d3b6a 100644 --- a/doc/api/test.md +++ b/doc/api/test.md @@ -3423,9 +3423,9 @@ behaves in the same fashion as the top level [`test()`][] function. test('top level test', async (t) => { await t.test( 'This is a subtest', - { only: false, skip: false, concurrency: 1, todo: false, plan: 4 }, + { only: false, skip: false, concurrency: 1, todo: false, plan: 1 }, (t) => { - assert.ok('some relevant assertion here'); + t.assert.ok('some relevant assertion here'); }, ); });