From 6fc73e817b5acfb12987ddca764a36c38a5bdce5 Mon Sep 17 00:00:00 2001 From: hu-weihua Date: Mon, 16 May 2016 02:04:04 -0400 Subject: [PATCH] Fix issue1095 Automation test framework doesn't support global variable with "http://" --- xCAT-test/xcattest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-test/xcattest b/xCAT-test/xcattest index dd1440897..5adc90aa3 100755 --- a/xCAT-test/xcattest +++ b/xCAT-test/xcattest @@ -223,7 +223,7 @@ sub getConfig } } elsif ($type eq "Varible") { ##NODE_BLOCK## - if($line =~ /(\w+)\s*=\s*([\w\.\-\+\/]+)/) { + if($line =~ /(\w+)\s*=\s*([\w\.\-\+\/:]+)/) { $config{var}{$1} = $2; } }