1
0
mirror of https://github.com/moby/moby.git synced 2025-07-29 07:21:35 +03:00

revendor logrus and x/crypto

this fixes the issue that was blocking a test from running on ppc64le.
the logrus revendor changes the color code used in that same test, so
that breaks the test for all platforms (updated in this pr)

Signed-off-by: Christy Perez <christy@linux.vnet.ibm.com>
This commit is contained in:
Christy Perez
2017-08-08 12:39:55 -05:00
parent bb0e8ee51c
commit 008b217844
47 changed files with 5143 additions and 2661 deletions

View File

@ -2159,9 +2159,9 @@ func (s *DockerDaemonSuite) TestRunLinksChanged(c *check.C) {
}
func (s *DockerDaemonSuite) TestDaemonStartWithoutColors(c *check.C) {
testRequires(c, DaemonIsLinux, NotPpc64le)
testRequires(c, DaemonIsLinux)
infoLog := "\x1b[34mINFO\x1b"
infoLog := "\x1b[36mINFO\x1b"
b := bytes.NewBuffer(nil)
done := make(chan bool)
@ -2209,7 +2209,7 @@ func (s *DockerDaemonSuite) TestDaemonStartWithoutColors(c *check.C) {
}
func (s *DockerDaemonSuite) TestDaemonDebugLog(c *check.C) {
testRequires(c, DaemonIsLinux, NotPpc64le)
testRequires(c, DaemonIsLinux)
debugLog := "\x1b[37mDEBU\x1b"