Ethan Reesor

Results 54 issues of Ethan Reesor

Given the following project: - go.mod - foo - foo_test.go - _bar - bar_test.go If I run `go test ./...`, the underscored package (_bar) is skipped. I *can* run those...

NeedsFix
go-test

Given the following program: ```go package main import ( "os" "github.com/edsrzf/mmap-go" ) func main() { f, err := os.CreateTemp("", "") must(err) defer f.Close() must(f.Truncate(1127.0.0.1:19064: write: broken pipe dlv dap (149952)...

Executing `sudo setcap "cap_sys_ptrace,cap_perfmon=ep" $(which rr)` (from [this comment](https://github.com/rr-debugger/rr/issues/3202#issuecomment-1127283697)) allows rr run in fast mode without changing perf_event_paranoid. Changing the capabilities for a single binary (or a for a single...

### Your feature request related to a problem? Please describe. Adding a custom linter is a massive headache. ### Describe the solution you'd like. Provide a mechanism for creating wrapper...

enhancement
linter: custom

It would be amazing if gotestsum supported running tests using [rr](https://rr-project.org/). I've hacked something together to use with `--raw-command` but it's ugly. I am imagining something like `gotestsum --engine rr`...

enhancement

Please provide a way to pass the `--chaos` flag to the `rr` backend. Either by a dedicated flag such as `--rr-chaos` or as a general `--rr-flags`, `--backend-flags`, `--backend-opts`, etc. ```...

kind/enhancement
area/cli
area/proc/gdbserial

Getting with the times (`/etc/portage/repos.conf/`)

I don't think WSL DS works with the fall creators update (build 1709). This presents similarly to #30, but I think it's a different issue. I believe this because one...

I'm trying to use this project to read an encoder with an Adafruit Feather RP2040. Here's my test program: ```c++ #include "hardware/pio.h" #include "quadrature.pio.h" PIO pio = pio0; uint sm;...

**Is your feature request related to a problem? Please describe.** Interpreting the output of `go test -race` is somewhat cumbersome. It would be really nice if the extension's test support...

FeatureRequest