Commit 67a7d5d8 authored by Russ Cox's avatar Russ Cox

misc/cgo/testshared: don't assume mtimes trigger rebuilds

The upcoming CL 73212 will see through mtime modifications.
Change the underlying file too.

Change-Id: Ib23b4136a62ee87bce408b76bb0385451ae7dcd2
Reviewed-on: https://go-review.googlesource.com/74130
Run-TryBot: Russ Cox <rsc@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent 4d0151ed
...@@ -702,18 +702,55 @@ func resetFileStamps() { ...@@ -702,18 +702,55 @@ func resetFileStamps() {
reset(gorootInstallDir) reset(gorootInstallDir)
} }
// touch makes path newer than the "old" time stamp used by resetFileStamps. // touch changes path and returns a function that changes it back.
func touch(path string) { // It also sets the time of the file, so that we can see if it is rewritten.
func touch(t *testing.T, path string) (cleanup func()) {
data, err := ioutil.ReadFile(path)
if err != nil {
t.Fatal(err)
}
old := make([]byte, len(data))
copy(old, data)
if bytes.HasPrefix(data, []byte("!<arch>\n")) {
// Change last digit of build ID.
// (Content ID in the new content-based build IDs.)
const marker = `build id "`
i := bytes.Index(data, []byte(marker))
if i < 0 {
t.Fatal("cannot find build id in archive")
}
j := bytes.IndexByte(data[i+len(marker):], '"')
if j < 0 {
t.Fatal("cannot find build id in archive")
}
i += len(marker) + j - 1
if data[i] == 'a' {
data[i] = 'b'
} else {
data[i] = 'a'
}
} else {
// assume it's a text file
data = append(data, '\n')
}
if err := ioutil.WriteFile(path, data, 0666); err != nil {
t.Fatal(err)
}
if err := os.Chtimes(path, nearlyNew, nearlyNew); err != nil { if err := os.Chtimes(path, nearlyNew, nearlyNew); err != nil {
log.Fatalf("os.Chtimes failed: %v", err) t.Fatal(err)
}
return func() {
if err := ioutil.WriteFile(path, old, 0666); err != nil {
t.Fatal(err)
}
} }
} }
// isNew returns if the path is newer than the time stamp used by touch. // isNew returns if the path is newer than the time stamp used by touch.
func isNew(path string) bool { func isNew(t *testing.T, path string) bool {
fi, err := os.Stat(path) fi, err := os.Stat(path)
if err != nil { if err != nil {
log.Fatalf("os.Stat failed: %v", err) t.Fatal(err)
} }
return fi.ModTime().After(stampTime) return fi.ModTime().After(stampTime)
} }
...@@ -721,14 +758,16 @@ func isNew(path string) bool { ...@@ -721,14 +758,16 @@ func isNew(path string) bool {
// Fail unless path has been rebuilt (i.e. is newer than the time stamp used by // Fail unless path has been rebuilt (i.e. is newer than the time stamp used by
// isNew) // isNew)
func AssertRebuilt(t *testing.T, msg, path string) { func AssertRebuilt(t *testing.T, msg, path string) {
if !isNew(path) { t.Helper()
if !isNew(t, path) {
t.Errorf("%s was not rebuilt (%s)", msg, path) t.Errorf("%s was not rebuilt (%s)", msg, path)
} }
} }
// Fail if path has been rebuilt (i.e. is newer than the time stamp used by isNew) // Fail if path has been rebuilt (i.e. is newer than the time stamp used by isNew)
func AssertNotRebuilt(t *testing.T, msg, path string) { func AssertNotRebuilt(t *testing.T, msg, path string) {
if isNew(path) { t.Helper()
if isNew(t, path) {
t.Errorf("%s was rebuilt (%s)", msg, path) t.Errorf("%s was rebuilt (%s)", msg, path)
} }
} }
...@@ -738,41 +777,55 @@ func TestRebuilding(t *testing.T) { ...@@ -738,41 +777,55 @@ func TestRebuilding(t *testing.T) {
goCmd(t, "install", "-linkshared", "exe") goCmd(t, "install", "-linkshared", "exe")
// If the source is newer than both the .a file and the .so, both are rebuilt. // If the source is newer than both the .a file and the .so, both are rebuilt.
t.Run("newsource", func(t *testing.T) {
resetFileStamps() resetFileStamps()
touch("src/depBase/dep.go") cleanup := touch(t, "src/depBase/dep.go")
defer func() {
cleanup()
goCmd(t, "install", "-linkshared", "exe")
}()
goCmd(t, "install", "-linkshared", "exe") goCmd(t, "install", "-linkshared", "exe")
AssertRebuilt(t, "new source", filepath.Join(gopathInstallDir, "depBase.a")) AssertRebuilt(t, "new source", filepath.Join(gopathInstallDir, "depBase.a"))
AssertRebuilt(t, "new source", filepath.Join(gopathInstallDir, "libdepBase.so")) AssertRebuilt(t, "new source", filepath.Join(gopathInstallDir, "libdepBase.so"))
})
// If the .a file is newer than the .so, the .so is rebuilt (but not the .a) // If the .a file is newer than the .so, the .so is rebuilt (but not the .a)
t.Run("newarchive", func(t *testing.T) {
resetFileStamps() resetFileStamps()
touch(filepath.Join(gopathInstallDir, "depBase.a")) goCmd(t, "list", "-linkshared", "-f={{.ImportPath}} {{.Stale}} {{.StaleReason}} {{.Target}}", "depBase")
goCmd(t, "install", "-linkshared", "exe") AssertNotRebuilt(t, "new .a file before build", filepath.Join(gopathInstallDir, "depBase.a"))
cleanup := touch(t, filepath.Join(gopathInstallDir, "depBase.a"))
defer func() {
cleanup()
goCmd(t, "install", "-v", "-linkshared", "exe")
}()
goCmd(t, "install", "-v", "-linkshared", "exe")
AssertNotRebuilt(t, "new .a file", filepath.Join(gopathInstallDir, "depBase.a")) AssertNotRebuilt(t, "new .a file", filepath.Join(gopathInstallDir, "depBase.a"))
AssertRebuilt(t, "new .a file", filepath.Join(gopathInstallDir, "libdepBase.so")) AssertRebuilt(t, "new .a file", filepath.Join(gopathInstallDir, "libdepBase.so"))
})
} }
func appendFile(path, content string) { func appendFile(t *testing.T, path, content string) {
f, err := os.OpenFile(path, os.O_WRONLY|os.O_APPEND, 0660) f, err := os.OpenFile(path, os.O_WRONLY|os.O_APPEND, 0660)
if err != nil { if err != nil {
log.Fatalf("os.OpenFile failed: %v", err) t.Fatalf("os.OpenFile failed: %v", err)
} }
defer func() { defer func() {
err := f.Close() err := f.Close()
if err != nil { if err != nil {
log.Fatalf("f.Close failed: %v", err) t.Fatalf("f.Close failed: %v", err)
} }
}() }()
_, err = f.WriteString(content) _, err = f.WriteString(content)
if err != nil { if err != nil {
log.Fatalf("f.WriteString failed: %v", err) t.Fatalf("f.WriteString failed: %v", err)
} }
} }
func writeFile(path, content string) { func writeFile(t *testing.T, path, content string) {
err := ioutil.WriteFile(path, []byte(content), 0644) err := ioutil.WriteFile(path, []byte(content), 0644)
if err != nil { if err != nil {
log.Fatalf("ioutil.WriteFile failed: %v", err) t.Fatalf("ioutil.WriteFile failed: %v", err)
} }
} }
...@@ -786,7 +839,7 @@ func TestABIChecking(t *testing.T) { ...@@ -786,7 +839,7 @@ func TestABIChecking(t *testing.T) {
// some senses but suffices for the narrow definition of ABI compatibility the // some senses but suffices for the narrow definition of ABI compatibility the
// toolchain uses today. // toolchain uses today.
resetFileStamps() resetFileStamps()
appendFile("src/depBase/dep.go", "func ABIBreak() {}\n") appendFile(t, "src/depBase/dep.go", "func ABIBreak() {}\n")
goCmd(t, "install", "-buildmode=shared", "-linkshared", "depBase") goCmd(t, "install", "-buildmode=shared", "-linkshared", "depBase")
c := exec.Command("./bin/exe") c := exec.Command("./bin/exe")
output, err := c.CombinedOutput() output, err := c.CombinedOutput()
...@@ -817,7 +870,7 @@ func TestABIChecking(t *testing.T) { ...@@ -817,7 +870,7 @@ func TestABIChecking(t *testing.T) {
// function) and rebuild libdepBase.so, exe still works, even if new function // function) and rebuild libdepBase.so, exe still works, even if new function
// is in a file by itself. // is in a file by itself.
resetFileStamps() resetFileStamps()
writeFile("src/depBase/dep2.go", "package depBase\nfunc noABIBreak() {}\n") writeFile(t, "src/depBase/dep2.go", "package depBase\nfunc noABIBreak() {}\n")
goCmd(t, "install", "-buildmode=shared", "-linkshared", "depBase") goCmd(t, "install", "-buildmode=shared", "-linkshared", "depBase")
run(t, "after non-ABI breaking change", "./bin/exe") run(t, "after non-ABI breaking change", "./bin/exe")
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment