| # Copyright 2024 The ChromiumOS Authors | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| """Tests for llvm_next.""" | |
| import unittest | |
| from llvm_tools import llvm_next | |
| class Test(unittest.TestCase): | |
| """Tests for llvm_next.""" | |
| def test_all_cls_have_patchesets(self): | |
| for cl in llvm_next.LLVM_NEXT_TESTING_CLS: | |
| self.assertIsNotNone(cl.patch_set, f"CL {cl} needs a patch-set") |