Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(898)

Unified Diff: utils/ssh/ssh_test.go

Issue 60630043: Fix for bug 1246938: ssh exit status lost
Patch Set: Fix for bug 1246938: ssh exit status lost Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« utils/ssh/ssh.go ('K') | « utils/ssh/ssh.go ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/ssh/ssh_test.go
=== modified file 'utils/ssh/ssh_test.go'
--- utils/ssh/ssh_test.go 2014-02-04 03:12:33 +0000
+++ utils/ssh/ssh_test.go 2014-02-06 13:38:47 +0000
@@ -11,6 +11,7 @@
gc "launchpad.net/gocheck"
+ "launchpad.net/juju-core/cmd"
"launchpad.net/juju-core/testing/testbase"
"launchpad.net/juju-core/utils/ssh"
)
@@ -149,6 +150,15 @@
)
}
+func (s *SSHCommandSuite) TestCommandError(c *gc.C) {
+ var opts ssh.Options
+ err := ioutil.WriteFile(s.fakessh, []byte("#!/bin/sh\nexit 42"), 0755)
+ c.Assert(err, gc.IsNil)
+ command := s.client.Command("ignored", []string{"echo", "foo"}, &opts)
+ err = command.Run()
+ c.Assert(cmd.IsRcPassthroughError(err), gc.Equals, true)
+}
+
func (s *SSHCommandSuite) TestCommandDefaultIdentities(c *gc.C) {
var opts ssh.Options
s.PatchValue(ssh.DefaultIdentities, []string{"def1", "def2"})
« utils/ssh/ssh.go ('K') | « utils/ssh/ssh.go ('k') | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b