From 390011cda20f4f9ef4ccd56ac6a3008bf4eb42f8 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Mon, 18 Sep 2023 12:58:45 -0700 Subject: [PATCH] Temporarily disable pch/gch tests while LLVM rolls in (#20283) It seems LLVM has changed both the default output from gch to pch, and also the contents of pch file metadata (which we check) are now quite different as well. This will unbreak the roller, and then we can adjust the test for new LLVM. --- test/test_other.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_other.py b/test/test_other.py index bb92ac242a66b..87f452519801a 100644 --- a/test/test_other.py +++ b/test/test_other.py @@ -4107,6 +4107,8 @@ def test_precompiled_headers_warnings(self): 'pch': ['pch'], }) def test_precompiled_headers(self, suffix): + self.skipTest('disable while LLVM changes to pch roll in (new defaults&output)') + create_file('header.h', '#define X 5\n') self.run_process([EMCC, '-xc++-header', 'header.h', '-c']) self.assertExists('header.h.gch') # default output is gch