Skip to content

Commit

Permalink
Remove empty tag from vulkan litmus tests
Browse files Browse the repository at this point in the history
  • Loading branch information
natgavrilenko committed Nov 8, 2024
1 parent f4f299d commit cdbd85b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,9 @@ public Object visitJump(LitmusVulkanParser.JumpContext ctx) {

private void tagControl(Event e, Boolean atomic, String mo, String avvis, String scope, String storageClass,
List<String> storageClassSemantics, List<String> avvisSemantics) {
e.addTags(storageClass);
if (!storageClass.isEmpty()) {
e.addTags(storageClass);
}
e.addTags(storageClassSemantics);
e.addTags(avvisSemantics);
if (atomic) {
Expand Down

0 comments on commit cdbd85b

Please sign in to comment.