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í bdfa619f77 support inline comments in asm #include lines
That is, the assembly line

    #include "foo.h" // bar

would make garble run into an error, as we would try to parse
the #include directive before we stripped comments,
effectively trying to unquote the string

    "foo.h" // bar

rather than just the included filename

    "foo.h"

Add test cases for asm but also cgo, while at it.

Fixes #812.
1 year ago
..
asm.txtar support inline comments in asm #include lines 1 year ago
atomic.txtar drop support for Go 1.20 1 year ago
basic.txtar drop support for Go 1.20 1 year ago
cache.txtar drop support for Go 1.20 1 year ago
cgo.txtar support inline comments in asm #include lines 1 year ago
crossbuild.txtar drop support for Go 1.20 1 year ago
ctrlflow.txtar drop support for Go 1.20 1 year ago
debugdir.txtar drop support for Go 1.20 1 year ago
embed.txtar drop support for Go 1.20 1 year ago
goenv.txtar drop support for Go 1.20 1 year ago
gogarble.txtar drop support for Go 1.20 1 year ago
goversion.txtar drop support for Go 1.20 1 year ago
help.txtar drop support for Go 1.20 1 year ago
implement.txtar strip struct tags when hashing structs for type identity 1 year ago
imports.txtar drop support for Go 1.20 1 year ago
init.txtar drop support for Go 1.20 1 year ago
ldflags.txtar drop support for Go 1.20 1 year ago
linker.txtar drop support for Go 1.20 1 year ago
linkname.txtar drop support for Go 1.20 1 year ago
list_error.txtar drop support for Go 1.20 1 year ago
literals.txtar fix shuffle obfuscation compiler optimization 1 year ago
modinfo.txtar drop support for Go 1.20 1 year ago
plugin.txtar drop support for Go 1.20 1 year ago
position.txtar drop support for Go 1.20 1 year ago
reflect.txtar track types used in make assigned to a reflected type 1 year ago
reverse.txtar track converted types when recording reflection usage 1 year ago
run.txtar drop support for Go 1.20 1 year ago
seed-cache.txtar drop support for Go 1.20 1 year ago
seed.txtar drop support for Go 1.20 1 year ago
syntax.txtar avoid panic when embedding a builtin alias 1 year ago
test.txtar drop support for Go 1.20 1 year ago
tiny.txtar drop support for Go 1.20 1 year ago
typeparams.txtar drop support for Go 1.20 1 year ago