The verify control segments needs to re-raise the exception that it
catches, or else the verify will record a FAIL and then promptly
exit with code 0 (i.e. things are okay).

Risk: Low
Visibility: Verify will actually fail when it fails.

Signed-off-by: John Admanski <jadmanski@google.com>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@2566 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/server/control_segments/verify b/server/control_segments/verify
index 38c3e07..c179d81 100644
--- a/server/control_segments/verify
+++ b/server/control_segments/verify
@@ -10,6 +10,7 @@
     except Exception, e:
         msg = 'verify failed on %s: %s\n' % (machine, str(e))
         job.record('FAIL', None, 'verify', msg)
+        raise
 
 
 job.parallel_simple(verify, machines)