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í ed4f91665d
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.
2 years ago
..
asm.txtar support inline comments in asm #include lines 2 years ago
atomic.txtar drop support for Go 1.20 2 years ago
basic.txtar drop support for Go 1.20 2 years ago
cache.txtar drop support for Go 1.20 2 years ago
cgo.txtar support inline comments in asm #include lines 2 years ago
crossbuild.txtar fix building for GOOS=darwin on Go 1.22.0 2 years ago
ctrlflow.txtar add trash block generator (#825) 2 years ago
debugdir.txtar drop support for Go 1.20 2 years ago
embed.txtar drop support for Go 1.20 2 years ago
goenv.txtar drop support for Go 1.20 2 years ago
gogarble.txtar obfuscate syscall again to fix x/sys/unix 2 years ago
goversion.txtar drop support for Go 1.20 2 years ago
help.txtar drop support for Go 1.20 2 years ago
implement.txtar obfuscate syscall again to fix x/sys/unix 2 years ago
imports.txtar drop support for Go 1.20 2 years ago
init.txtar drop support for Go 1.20 2 years ago
ldflags.txtar drop support for Go 1.20 2 years ago
linker.txtar drop support for Go 1.20 2 years ago
linkname.txtar drop support for Go 1.20 2 years ago
list_error.txtar drop support for Go 1.20 2 years ago
literals.txtar fix shuffle obfuscation compiler optimization 2 years ago
modinfo.txtar drop support for Go 1.20 2 years ago
plugin.txtar drop support for Go 1.20 2 years ago
position.txtar drop support for Go 1.20 2 years ago
reflect.txtar track types used in make assigned to a reflected type 2 years ago
reverse.txtar track converted types when recording reflection usage 2 years ago
run.txtar drop support for Go 1.20 2 years ago
seed-cache.txtar drop support for Go 1.20 2 years ago
seed.txtar drop support for Go 1.20 2 years ago
syntax.txtar avoid panic when embedding a builtin alias 2 years ago
test.txtar drop support for Go 1.20 2 years ago
tiny.txtar drop support for Go 1.20 2 years ago
typeparams.txtar drop support for Go 1.20 2 years ago