From f50604d7188c210b16bcc43bc75550960a678641 Mon Sep 17 00:00:00 2001 From: hu-weihua Date: Mon, 28 Aug 2017 21:55:09 -0400 Subject: [PATCH] Add missing dependency package for pre_deploy_sn used by SN setup test case --- xCAT-test/autotest/testcase/installation/pre_deploy_sn | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/xCAT-test/autotest/testcase/installation/pre_deploy_sn b/xCAT-test/autotest/testcase/installation/pre_deploy_sn index 21c18413b..82efebb82 100755 --- a/xCAT-test/autotest/testcase/installation/pre_deploy_sn +++ b/xCAT-test/autotest/testcase/installation/pre_deploy_sn @@ -1,4 +1,5 @@ #!/usr/bin/env perl +use Time::Local; $ENV{TERM} = "xterm-256color"; @@ -16,10 +17,10 @@ sub runcmd { chomp(@output); print "$_\n" foreach (@output); if ($?) { - print ">>>To run $cmd ....[error]\n"; + print ">>>Run $cmd ....[error]\n"; exit 1; }else{ - print ">>>To run: $cmd ....[ok]\n"; + print ">>>Run: $cmd ....[ok]\n"; } }