Skip to content

Commit 3422107

Browse files
committed
attempt 2
1 parent 11d62af commit 3422107

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.github/workflows/coreth-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
steps:
3636
- uses: actions/checkout@v4
3737
- uses: ./.github/actions/setup-go-for-project
38+
- run: go install golang.org/x/tools/cmd/bisect@latest
3839
- run: ./scripts/run_task.sh build-test
3940
- run: ./scripts/run_task.sh coverage
4041

.github/workflows/subnet-evm-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jobs:
3636
steps:
3737
- uses: actions/checkout@v4
3838
- uses: ./.github/actions/setup-go-for-project
39+
- run: go install golang.org/x/tools/cmd/bisect@latest
3940
- run: ./scripts/run_task.sh build-test
4041
- run: ./scripts/run_task.sh coverage
4142

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.LevelInfo, true)))
28+
log.SetDefault(log.NewLogger(log.NewTerminalHandlerWithLevel(os.Stderr, log.LevelError, 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-
GOTRACEBACK=crash GODEBUG=checkfinalizers=1 go test -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" ./...
19+
bisect -compile=variablemake go test -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" ./...

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.LevelInfo, true)))
26+
log.SetDefault(log.NewLogger(log.NewTerminalHandlerWithLevel(os.Stderr, log.LevelError, true)))
2727

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

0 commit comments

Comments
 (0)