Skip to content

Commit 7fc10e9

Browse files
author
Peter Huene
authored
Merge pull request #16 from peterhuene/fix-ci
Update expected trap message for backtrace.
2 parents 859ecdf + 69eeb89 commit 7fc10e9

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
name: Test .NET embedding of Wasmtime
1414
runs-on: ${{ matrix.os }}
1515
strategy:
16+
fail-fast: false
1617
matrix:
1718
build: [linux-debug, linux-release, macos-debug, macos-release, windows-debug, windows-release]
1819
include:

tests/FunctionThunkingTests.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ public void ItPropagatesExceptionsToCallersViaTraps()
6666
action
6767
.Should()
6868
.Throw<TrapException>()
69-
.WithMessage(THROW_MESSAGE);
69+
// Ideally this should contain a check for the backtrace
70+
// See: https://github.com/bytecodealliance/wasmtime/issues/1845
71+
.WithMessage(THROW_MESSAGE + "*");
7072
}
7173
}
7274
}

0 commit comments

Comments
 (0)