Skip to content

Commit

Permalink
chore: remove futex_trace manifest option
Browse files Browse the repository at this point in the history
  • Loading branch information
rinor committed Jun 7, 2024
1 parent 074c720 commit 18af2a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/flags_run_local_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func (flags *RunLocalInstanceCommandFlags) MergeToConfig(c *types.Config) error
c.Debugflags = []string{}

if flags.Trace {
c.Debugflags = []string{"trace", "debugsyscalls", "futex_trace", "fault"}
c.Debugflags = []string{"trace", "debugsyscalls", "fault"}
}

if flags.Debug {
Expand Down
2 changes: 1 addition & 1 deletion cmd/flags_run_local_instance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func TestRunLocalInstanceFlagsMergeToConfig(t *testing.T) {

expected := &types.Config{
BuildDir: "",
Debugflags: []string{"trace", "debugsyscalls", "futex_trace", "fault", "syscall_summary"},
Debugflags: []string{"trace", "debugsyscalls", "fault", "syscall_summary"},
Force: true,
NoTrace: []string{"a"},
RunConfig: types.RunConfig{
Expand Down

0 comments on commit 18af2a4

Please sign in to comment.