Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(gnovm): don't always output panics to stdout in RunMain/RunFunc #3944

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 9 additions & 11 deletions gnovm/cmd/gno/run.go
Original file line number Diff line number Diff line change
@@ -133,9 +133,7 @@

// run files
m.RunFiles(files...)
runExpr(m, cfg.expr)

return nil
return runExpr(m, cfg.expr)
}

func parseFiles(fnames []string, stderr io.WriteCloser) ([]*gno.FileNode, error) {
@@ -187,23 +185,23 @@
return fn, nil
}

func runExpr(m *gno.Machine, expr string) {
func runExpr(m *gno.Machine, expr string) (err error) {
ex, err := gno.ParseExpr(expr)
if err != nil {
return fmt.Errorf("could not parse expression: %w", err)
}

Check warning on line 192 in gnovm/cmd/gno/run.go

Codecov / codecov/patch

gnovm/cmd/gno/run.go#L191-L192

Added lines #L191 - L192 were not covered by tests
defer func() {
if r := recover(); r != nil {
switch r := r.(type) {
case gno.UnhandledPanicError:
fmt.Printf("panic running expression %s: %v\nStacktrace:\n%s\n",
err = fmt.Errorf("panic running expression %s: %v\nStacktrace:\n%s",

Check warning on line 197 in gnovm/cmd/gno/run.go

Codecov / codecov/patch

gnovm/cmd/gno/run.go#L197

Added line #L197 was not covered by tests
expr, r.Error(), m.ExceptionsStacktrace())
default:
fmt.Printf("panic running expression %s: %v\nMachine State:%s\nStacktrace:\n%s\n",
err = fmt.Errorf("panic running expression %s: %v\nMachine State:%s\nStacktrace:\n%s",
expr, r, m.String(), m.Stacktrace().String())
}
panic(r)
}
}()
ex, err := gno.ParseExpr(expr)
if err != nil {
panic(fmt.Errorf("could not parse: %w", err))
}
m.Eval(ex)
return nil
}
6 changes: 3 additions & 3 deletions gnovm/cmd/gno/run_test.go
Original file line number Diff line number Diff line change
@@ -28,8 +28,8 @@ func TestRunApp(t *testing.T) {
stdoutShouldContain: "hello, other world!",
},
{
args: []string{"run", "../../tests/integ/run_package"},
recoverShouldContain: "name main not declared",
args: []string{"run", "../../tests/integ/run_package"},
errShouldContain: "name main not declared",
},
{
args: []string{"run", "-expr", "Hello()", "../../tests/integ/run_package"},
@@ -48,7 +48,7 @@ func TestRunApp(t *testing.T) {
"run", "-expr", "otherFile()",
"../../tests/integ/run_package/package.gno",
},
recoverShouldContain: "name otherFile not declared",
errShouldContain: "name otherFile not declared",
},
{
args: []string{
28 changes: 0 additions & 28 deletions gnovm/pkg/gnolang/machine.go
Original file line number Diff line number Diff line change
@@ -681,38 +681,10 @@ func (m *Machine) resavePackageValues(rlm *Realm) {
}

func (m *Machine) RunFunc(fn Name) {
defer func() {
if r := recover(); r != nil {
switch r := r.(type) {
case UnhandledPanicError:
fmt.Printf("Machine.RunFunc(%q) panic: %s\nStacktrace:\n%s\n",
fn, r.Error(), m.ExceptionsStacktrace())
default:
fmt.Printf("Machine.RunFunc(%q) panic: %v\nMachine State:%s\nStacktrace:\n%s\n",
fn, r, m.String(), m.Stacktrace().String())
}
panic(r)
}
}()
m.RunStatement(S(Call(Nx(fn))))
}

func (m *Machine) RunMain() {
defer func() {
r := recover()

if r != nil {
switch r := r.(type) {
case UnhandledPanicError:
fmt.Printf("Machine.RunMain() panic: %s\nStacktrace:\n%s\n",
r.Error(), m.ExceptionsStacktrace())
default:
fmt.Printf("Machine.RunMain() panic: %v\nMachine State:%s\nStacktrace:\n%s\n",
r, m.String(), m.Stacktrace())
}
panic(r)
}
}()
m.RunStatement(S(Call(X("main"))))
}

Loading