From 1d28a217176f45f70f4ac987955449cdae25d26a Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Thu, 5 Sep 2013 13:56:01 +0100 Subject: [PATCH] TestSupport: Massage host props with space in them So that e.g. "build make flags" can be written in .xen-osstest/config as HostProp__BuildMakeFlags. --- Osstest/TestSupport.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Osstest/TestSupport.pm b/Osstest/TestSupport.pm index 8330aef9..6ad703a0 100644 --- a/Osstest/TestSupport.pm +++ b/Osstest/TestSupport.pm @@ -749,6 +749,9 @@ sub propname_massage ($) { # and are moving to WordWordWord my ($prop) = @_; + # some property names are "word word word". make it word-word-word + # before massaging into WordWordWord + $prop =~ s/ /-/g; $prop = ucfirst $prop; while ($prop =~ m/-/) { $prop = $`.ucfirst $'; #'; -- 2.39.5