-
Notifications
You must be signed in to change notification settings - Fork 397
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
2,760 additions
and
354 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package testutils | ||
|
||
import ( | ||
"testing" | ||
|
||
"gno.land/p/demo/uassert" | ||
) | ||
|
||
func TestTestAddress(t *testing.T) { | ||
testAddr := TestAddress("author1") | ||
uassert.Equal(t, "g1v96hg6r0wgc47h6lta047h6lta047h6lm33tq6", string(testAddr)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/bin/sh | ||
|
||
# softfloat64.go: | ||
# - add header | ||
# - change package name | ||
cat > runtime_softfloat64.go << EOF | ||
// Code generated by copy.sh. DO NOT EDIT. | ||
// This file is copied from \$GOROOT/src/runtime/softfloat64.go. | ||
// It is the software floating point implementation used by the Go runtime. | ||
EOF | ||
cat "$GOROOT/src/runtime/softfloat64.go" >> ./runtime_softfloat64.go | ||
sed -i 's/^package runtime$/package softfloat/' runtime_softfloat64.go | ||
|
||
# softfloat64_test.go: | ||
# - add header | ||
# - change package name | ||
# - change import to right package | ||
# - change GOARCH to runtime.GOARCH, and import the "runtime" package | ||
cat > runtime_softfloat64_test.go << EOF | ||
// Code generated by copy.sh. DO NOT EDIT. | ||
// This file is copied from \$GOROOT/src/runtime/softfloat64_test.go. | ||
// It is the tests for the software floating point implementation | ||
// used by the Go runtime. | ||
EOF | ||
cat "$GOROOT/src/runtime/softfloat64_test.go" >> ./runtime_softfloat64_test.go | ||
sed -i 's/^package runtime_test$/package softfloat_test/ | ||
s#^\t\. "runtime"$#\t. "github.com/gnolang/gno/gnovm/pkg/gnolang/internal/softfloat"# | ||
s/GOARCH/runtime.GOARCH/g | ||
16a\ | ||
"runtime"' runtime_softfloat64_test.go |
Oops, something went wrong.