Skip to content

Commit 11d62af

Browse files
committed
attempt 1
1 parent 09a9530 commit 11d62af

File tree

5 files changed

+3
-12
lines changed

5 files changed

+3
-12
lines changed

graft/coreth/core/blockchain_test.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -736,11 +736,6 @@ func TestCanonicalHashMarker(t *testing.T) {
736736
}
737737

738738
func testCanonicalHashMarker(t *testing.T, scheme string) {
739-
// TODO: https://github.com/ava-labs/firewood/issues/1679
740-
if scheme == customrawdb.FirewoodScheme {
741-
t.Skip("firewood currently fails due to a stack corruption issue")
742-
}
743-
744739
var cases = []struct {
745740
forkA int
746741
forkB int

graft/coreth/core/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func TestMain(m *testing.M) {
2525
params.RegisterExtras()
2626

2727
// May of these tests are likely to fail due to `log.Crit` in goroutines.
28-
log.SetDefault(log.NewLogger(log.NewTerminalHandlerWithLevel(os.Stderr, log.LevelCrit, true)))
28+
log.SetDefault(log.NewLogger(log.NewTerminalHandlerWithLevel(os.Stderr, log.LevelInfo, true)))
2929

3030
opts := []goleak.Option{
3131
// No good way to shut down these goroutines:

graft/evm/scripts/build_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ fi
1616

1717
cd "$REPO_ROOT/graft/evm"
1818
# shellcheck disable=SC2046
19-
go test -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" ./...
19+
GOTRACEBACK=crash GODEBUG=checkfinalizers=1 go test -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" ./...

graft/subnet-evm/core/blockchain_test.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -688,10 +688,6 @@ func TestCanonicalHashMarker(t *testing.T) {
688688

689689
func testCanonicalHashMarker(t *testing.T, scheme string) {
690690
// TODO: https://github.com/ava-labs/firewood/issues/1679
691-
if scheme == customrawdb.FirewoodScheme {
692-
t.Skip("firewood currently fails due to a stack corruption issue")
693-
}
694-
695691
cases := []struct {
696692
forkA int
697693
forkB int

graft/subnet-evm/core/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func TestMain(m *testing.M) {
2323
params.RegisterExtras()
2424

2525
// May of these tests are likely to fail due to `log.Crit` in goroutines.
26-
log.SetDefault(log.NewLogger(log.NewTerminalHandlerWithLevel(os.Stderr, log.LevelCrit, true)))
26+
log.SetDefault(log.NewLogger(log.NewTerminalHandlerWithLevel(os.Stderr, log.LevelInfo, true)))
2727

2828
opts := []goleak.Option{
2929
// No good way to shut down these goroutines:

0 commit comments

Comments
 (0)