You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
garble/testdata/script
Daniel Martí 66b61406c1 obfuscate syscall again to fix x/sys/unix
When updating Garble to support Go 1.22.0, CI on MacOS spotted
that the syscall package was failing to build given that it uses
assembly code which is only allowed in some std packages.

That allowlist is based on import paths, and we were obfuscating
the syscall package's import path, so that was breaking GOOS=darwin.
As a fix, I added syscall to runtimeAndDeps to not obfuscate it.

That wasn't a great fix; it's not part of runtime and its dependencies,
and there's no reason we should avoid obfuscating the package contents.
Not obfuscating the contents in fact broke x/sys/unix,
as it contains a copy of syscall.Rlimit which it type converted with.

Undo that fix and reinstate the gogarble.txtar syscall test.
Implement the fix where we only leave syscall's import path alone.
Add a regression test, and add a note about adding x/net and x/sys
to check-third-party.sh so that we can catch these bugs earlier.

Fixes #830.
1 year ago
..
asm.txtar drop Go 1.21 and start using go/version 1 year ago
atomic.txtar drop Go 1.21 and start using go/version 1 year ago
basic.txtar drop Go 1.21 and start using go/version 1 year ago
cache.txtar drop Go 1.21 and start using go/version 1 year ago
cgo.txtar drop Go 1.21 and start using go/version 1 year ago
crossbuild.txtar drop Go 1.21 and start using go/version 1 year ago
ctrlflow.txtar drop Go 1.21 and start using go/version 1 year ago
debugdir.txtar drop Go 1.21 and start using go/version 1 year ago
embed.txtar drop Go 1.21 and start using go/version 1 year ago
goenv.txtar drop Go 1.21 and start using go/version 1 year ago
gogarble.txtar obfuscate syscall again to fix x/sys/unix 1 year ago
goversion.txtar drop Go 1.21 and start using go/version 1 year ago
help.txtar drop Go 1.21 and start using go/version 1 year ago
implement.txtar obfuscate syscall again to fix x/sys/unix 1 year ago
imports.txtar drop Go 1.21 and start using go/version 1 year ago
init.txtar drop Go 1.21 and start using go/version 1 year ago
ldflags.txtar drop Go 1.21 and start using go/version 1 year ago
linker.txtar drop Go 1.21 and start using go/version 1 year ago
linkname.txtar drop Go 1.21 and start using go/version 1 year ago
list_error.txtar drop Go 1.21 and start using go/version 1 year ago
literals.txtar drop Go 1.21 and start using go/version 1 year ago
modinfo.txtar drop Go 1.21 and start using go/version 1 year ago
plugin.txtar drop Go 1.21 and start using go/version 1 year ago
position.txtar drop Go 1.21 and start using go/version 1 year ago
reflect.txtar drop Go 1.21 and start using go/version 1 year ago
reverse.txtar drop Go 1.21 and start using go/version 1 year ago
run.txtar drop Go 1.21 and start using go/version 1 year ago
seed-cache.txtar drop Go 1.21 and start using go/version 1 year ago
seed.txtar drop Go 1.21 and start using go/version 1 year ago
syntax.txtar drop Go 1.21 and start using go/version 1 year ago
test.txtar drop Go 1.21 and start using go/version 1 year ago
tiny.txtar drop Go 1.21 and start using go/version 1 year ago
typeparams.txtar drop Go 1.21 and start using go/version 1 year ago