delve/pkg/terminal
Alessandro Arzilli 0741d3e57f
*: Go 1.14 support branch (#1727)
* tests: misc test fixes for go1.14

- math.go is now ambiguous due to changes to the go runtime so specify
  that we mean our own math.go in _fixtures
- go list -m requires vendor-mode to be disabled so pass '-mod=' to it
  in case user has GOFLAGS=-mod=vendor
- update version of go/packages, required to work with go 1.14 (and
  executed go mod vendor)
- Increased goroutine migration in one development version of Go 1.14
  revealed a problem with TestCheckpoints in command_test.go and
  rr_test.go. The tests were always wrong because Restart(checkpoint)
  doesn't change the current thread but we can't assume that when the
  checkpoint was taken the current goroutine was running on the same
  thread.

* goversion: update maximum supported version

* Makefile: disable testing lldb-server backend on linux with Go 1.14

There seems to be some incompatibility with lldb-server version 6.0.0
on linux and Go 1.14.

* proc/gdbserial: better handling of signals

- if multiple signals are received simultaneously propagate all of them to the
  target threads instead of only one.
- debugserver will drop an interrupt request if a target thread simultaneously
  receives a signal, handle this situation.

* dwarf/line: normalize backslashes for windows executables

Starting with Go 1.14 the compiler sometimes emits backslashes as well
as forward slashes in debug_line, normalize everything to / for
conformity with the behavior of previous versions.

* proc/native: partial support for Windows async preempt mechanism

See https://github.com/golang/go/issues/36494 for a description of why
full support for 1.14 under windows is problematic.

* proc/native: disable Go 1.14 async preemption on Windows

See https://github.com/golang/go/issues/36494
2020-02-10 17:31:54 -08:00
..
starbind proc,service: return build informations for each package 2020-01-09 20:19:02 +01:00
command_test.go *: Go 1.14 support branch (#1727) 2020-02-10 17:31:54 -08:00
command.go pkg/terminal: tolerate spurious spaces between arguments of cli. 2020-01-20 10:47:56 -08:00
config.go pkg/terminal: tolerate spurious spaces between arguments of cli. 2020-01-20 10:47:56 -08:00
disasmprint.go *: Update import name to github.com/go-delve/delve 2019-01-04 19:43:13 +01:00
docgen.go Documentation/cli: Add the configuration and command history file 2020-01-02 09:18:58 -08:00
starlark_test.go test: skip failed tests on arm64 2019-11-27 11:07:31 -08:00
starlark.go terminal: adds embedded scripting language (#1466) 2019-07-02 10:55:27 -07:00
terminal_other.go Move top-level packages into pkg 2017-02-08 12:17:19 -08:00
terminal_test.go terminal: prompt to kill remote if process exited (#1621) 2019-07-17 15:54:15 -07:00
terminal_windows.go Move top-level packages into pkg 2017-02-08 12:17:19 -08:00
terminal.go pkg/terminal: Fix exit status 2019-12-03 08:39:07 +01:00