Skip to content

Commit

Permalink
Test address sanitizer builds
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperisager committed Nov 7, 2024
1 parent 6e0e215 commit 4e26e00
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,15 @@ test('basic', { timeout: 120000 }, async (t) => {

await t.execution(make.generate({ cwd, cache: false }))

await t.execution(make.build({ cwd }))
await t.execution(make.build({ cwd, clean: true }))

await t.execution(make.install({ cwd }))
})

test('address sanitizier', { timeout: 120000 }, async (t) => {
const cwd = path.resolve(__dirname, 'test/fixtures/basic')

await t.execution(make.generate({ cwd, cache: false, sanitize: 'address' }))

await t.execution(make.build({ cwd, clean: true }))
})

0 comments on commit 4e26e00

Please sign in to comment.