boringssl/util/fipstools/delocate_test.go
Adam Langley f64a6eeaf0 Switch to new delocate tool.
Most importantly, this version of delocate works for ppc64le. It should
also work for x86-64, but will need significant testing to make sure
that it covers all the cases that the previous delocate.go covered.

It's less stringtastic than the old code, however the parser isn't as
nice as I would have liked. I thought that the reason we put up with
AT&T syntax with Intel is so that assembly syntax could be somewhat
consistent across platforms. At least for ppc64le, that does not appear
to be the case.

Change-Id: Ic7e3c6acc3803d19f2c3ff5620c5e39703d74212
Reviewed-on: https://boringssl-review.googlesource.com/16464
Reviewed-by: Adam Langley <agl@google.com>
Commit-Queue: Adam Langley <agl@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
2017-05-30 18:00:16 +00:00

85 lines
2.5 KiB
Go

// Copyright (c) 2017, Google Inc.
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
// SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
// OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
// CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
package main
import (
"bytes"
"flag"
"io/ioutil"
"path/filepath"
"testing"
)
var (
testDataDir = flag.String("testdata", "testdata", "The path to the test data directory.")
update = flag.Bool("update", false, "If true, update output files rather than compare them.")
)
type delocateTest struct {
name string
in []string
out string
}
func (test *delocateTest) Path(file string) string {
return filepath.Join(*testDataDir, test.name, file)
}
var delocateTests = []delocateTest{
{"x86_64-Basic", []string{"in.s"}, "out.s"},
{"x86_64-Sections", []string{"in.s"}, "out.s"},
{"x86_64-LabelRewrite", []string{"in1.s", "in2.s"}, "out.s"},
{"x86_64-GOTRewrite", []string{"in.s"}, "out.s"},
{"x86_64-BSS", []string{"in.s"}, "out.s"},
{"ppc64le-Sample", []string{"in.s"}, "out.s"},
{"ppc64le-Sample2", []string{"in.s"}, "out.s"},
{"ppc64le-TOCWithOffset", []string{"in.s"}, "out.s"},
}
func TestDelocate(t *testing.T) {
for _, test := range delocateTests {
t.Run(test.name, func(t *testing.T) {
var inputs []inputFile
for i, in := range test.in {
inputs = append(inputs, inputFile{
index: i,
path: test.Path(in),
})
}
if err := parseInputs(inputs); err != nil {
t.Fatalf("parseInputs failed: %s", err)
}
var buf bytes.Buffer
if err := transform(&buf, inputs); err != nil {
t.Fatalf("transform failed: %s", err)
}
if *update {
ioutil.WriteFile(test.Path(test.out), buf.Bytes(), 0666)
} else {
expected, err := ioutil.ReadFile(test.Path(test.out))
if err != nil {
t.Fatalf("could not read %q: %s", test.Path(test.out), err)
}
if !bytes.Equal(buf.Bytes(), expected) {
t.Errorf("delocated output differed. Wanted:\n%s\nGot:\n%s\n", expected, buf.Bytes())
}
}
})
}
}