Skip to content

Commit

Permalink
spacing/commentary
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeph Grunschlag committed May 30, 2023
1 parent 7eb8a54 commit ad0a6a0
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -80,8 +80,8 @@ endif
GOTAGS := --tags "$(GOTAGSLIST)"
GOTRIMPATH := $(shell GOPATH=$(GOPATH) && go help build | grep -q .-trimpath && echo -trimpath)

COVER_PROFILE := $(SRCPATH)/coverage.txt
COVER_OUT := $(SRCPATH)/cover.out
COVER_PROFILE := $(SRCPATH)/coverage.txt
COVER_OUT := $(SRCPATH)/cover.out

GOLDFLAGS_BASE := -X github.com/algorand/go-algorand/config.BuildNumber=$(BUILDNUMBER) \
-X github.com/algorand/go-algorand/config.CommitHash=$(COMMITHASH) \
@@ -92,9 +92,9 @@ GOLDFLAGS_BASE := -X github.com/algorand/go-algorand/config.BuildNumber=$(BUILD
GOLDFLAGS := $(GOLDFLAGS_BASE) \
-X github.com/algorand/go-algorand/config.Channel=$(CHANNEL)

UNIT_TEST_SOURCES := $(sort $(shell GOPATH=$(GOPATH) && GO111MODULE=off && go list ./... | grep -v /go-algorand/test/ ))
UNIT_TEST_SOURCES_SUBMOD := $(sort $(shell GOPATH=$(GOPATH) && GO111MODULE=off && find . -mindepth 2 -name 'go.mod' -execdir go list ./... \; | grep -v /go-algorand/test/ ))
ALGOD_API_PACKAGES := $(sort $(shell GOPATH=$(GOPATH) && GO111MODULE=off && cd daemon/algod/api; go list ./... ))
UNIT_TEST_SOURCES := $(sort $(shell GOPATH=$(GOPATH) && GO111MODULE=off && go list ./... | grep -v /go-algorand/test/ ))
UNIT_TEST_SOURCES_SUBMOD := $(sort $(shell GOPATH=$(GOPATH) && GO111MODULE=off && find . -mindepth 2 -name 'go.mod' -execdir go list ./... \; | grep -v /go-algorand/test/ ))
ALGOD_API_PACKAGES := $(sort $(shell GOPATH=$(GOPATH) && GO111MODULE=off && cd daemon/algod/api; go list ./... ))

MSGP_GENERATE := ./protocol ./protocol/test ./crypto ./crypto/merklearray ./crypto/merklesignature ./crypto/stateproof ./data/basics ./data/transactions ./data/stateproofmsg ./data/committee ./data/bookkeeping ./data/hashable ./agreement ./rpcs ./network ./node ./ledger ./ledger/ledgercore ./ledger/store/trackerdb ./ledger/encoded ./stateproof ./data/account ./daemon/algod/api/spec/v2

2 changes: 2 additions & 0 deletions tools/x-repo-types/xrt_test.go
Original file line number Diff line number Diff line change
@@ -31,6 +31,8 @@ type testCase struct {
}

func TestCrossRepoTypes(t *testing.T) {
// NOTE: the heavy lifting is done by the first test case, so it's better to apply PartitionTest to the
// entire test as opposed to partitioning each test case.
partitiontest.PartitionTest(t)

testCases := []testCase{

0 comments on commit ad0a6a0

Please sign in to comment.