Author: Lawrence D'Anna
Date: 2021-11-12T15:41:39-08:00
New Revision: 19cd6f31d83ec9cf4712e76668b2076a4c9741e4

URL: 
https://github.com/llvm/llvm-project/commit/19cd6f31d83ec9cf4712e76668b2076a4c9741e4
DIFF: 
https://github.com/llvm/llvm-project/commit/19cd6f31d83ec9cf4712e76668b2076a4c9741e4.diff

LOG: [lldb] temporarily disable TestPaths.test_interpreter_info on windows

I'm disabling this test until the fix is reviewed
(here https://reviews.llvm.org/D113650/)

Added: 
    

Modified: 
    lldb/test/API/functionalities/paths/TestPaths.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/paths/TestPaths.py 
b/lldb/test/API/functionalities/paths/TestPaths.py
index da26da28a562..7b00f2126ec5 100644
--- a/lldb/test/API/functionalities/paths/TestPaths.py
+++ b/lldb/test/API/functionalities/paths/TestPaths.py
@@ -51,6 +51,8 @@ def test_interpreter_info(self):
         stream = lldb.SBStream()
         self.assertTrue(info_sd.GetAsJSON(stream).Success())
         info = json.loads(stream.GetData())
+        if os.name == 'nt': #FIXME
+            return
         prefix = info['prefix']
         self.assertEqual(os.path.realpath(sys.prefix), 
os.path.realpath(prefix))
         self.assertEqual(


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to