[ovs-dev] [PATCH V4 12/20] python tests: Fixed abs_file_name function for Windows

Paul Boca pboca at cloudbasesolutions.com
Sun Jun 26 12:12:27 UTC 2016


On windows a path containint ':' is considered an absolute path.

Signed-off-by: Paul-Daniel Boca <pboca at cloudbasesolutions.com>
---
V2: No changes
V3: No changes
V4: No changes
---
 python/ovs/util.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/ovs/util.py b/python/ovs/util.py
index cb0574b..edcfe81 100644
--- a/python/ovs/util.py
+++ b/python/ovs/util.py
@@ -30,7 +30,7 @@ def abs_file_name(dir_, file_name):
 
     This differs from os.path.abspath() in that it will never change the
     meaning of a file name."""
-    if file_name.startswith('/'):
+    if file_name.startswith('/') or file_name.find(':') > -1:
         return file_name
     else:
         if dir_ is None or dir_ == "":
-- 
2.7.2.windows.1



More information about the dev mailing list