various minor cleanups and fixes (#99)

Error strings should never be capitalized.

A binsubstr line in one of the tests was duplicate and thus useless.

Remove duplicate or trailing spaces in test scripts.

Finally, add a TODO for an optimization I just spotted.
pull/101/head
Daniel Martí 5 years ago committed by GitHub
parent 2735555ab2
commit 75e904f6d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -76,7 +76,7 @@ func obfuscateNumberLiteral(cursor *astutil.Cursor, info *types.Info) error {
}
default:
return errors.New("Wrong node Type")
return errors.New("wrong node Type")
}
strValue := sign + basic.Value
@ -108,7 +108,7 @@ func obfuscateNumberLiteral(cursor *astutil.Cursor, info *types.Info) error {
intType, ok := intTypes[typeInfo]
if !ok {
return errors.New("Wrong type")
return errors.New("wrong type")
}
call = genObfuscateInt(uint64(intValue), intType)

@ -225,6 +225,8 @@ func main1() int {
}
func mainErr(args []string) error {
// TODO(mvdan): only run this once at the very beginning, then set the
// GOPRIVATE env var.
out, err := exec.Command("go", "env", "GOPRIVATE").CombinedOutput()
if err != nil {
return fmt.Errorf("%v: %s", err, out)
@ -257,7 +259,7 @@ func mainErr(args []string) error {
seed = make([]byte, 16) // random 128 bit seed
if _, err := rand.Read(seed); err != nil {
return fmt.Errorf("Error generating random seed: %v", err)
return fmt.Errorf("error generating random seed: %v", err)
}
flagSeed = "random;" + base64.StdEncoding.EncodeToString(seed)
@ -433,7 +435,7 @@ func transformCompile(args []string) ([]string, error) {
if envGarbleSeed != "" {
seed, err = base64.StdEncoding.DecodeString(strings.TrimPrefix(envGarbleSeed, "random;"))
if err != nil {
return nil, fmt.Errorf("Error decoding base64 encoded seed: %v", err)
return nil, fmt.Errorf("error decoding base64 seed: %v", err)
}
mathrand.Seed(int64(binary.BigEndian.Uint64(seed)))

@ -9,7 +9,6 @@ go build -trimpath
exec ./main
cmp stderr main.stderr
binsubstr main$exe 'PublicVar' 'PublicFunc'
! binsubstr plugin.so 'privateFunc'
[short] stop # no need to verify this with -short

Loading…
Cancel
Save