================
@@ -1775,16 +1775,20 @@ def no_reason(_):
                 attrvalue, "__no_debug_info_test__", False
             ):
                 # If any debug info categories were explicitly tagged, assume 
that list to be
-                # authoritative.  If none were specified, try with all debug
-                # info formats.
-                all_dbginfo_categories = set(
+                # authoritative.  If none were specified, try with all debug 
info formats.
+                test_method_categories = getattr(attrvalue, "categories", [])
+                dbginfo_categories = set(test_method_categories) & set(
----------------
labath wrote:

How about this:

```suggestion
                test_method_categories = set(getattr(attrvalue, "categories", 
[]))
                all_dbginfo_categories = set(
```

https://github.com/llvm/llvm-project/pull/150579
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to