Skip to content

Commit faaa31d

Browse files
meisterTBlaze Rules Copybara
authored andcommitted
Automated Code Change
PiperOrigin-RevId: 941500252
1 parent 5decd06 commit faaa31d

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

tests/analysis_test_tests.bzl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ def _test_change_setting_with_failure(env, target):
168168
def _inspect_actions_fake_rule(ctx):
169169
out_file = ctx.actions.declare_file("out.txt")
170170
ctx.actions.run_shell(
171+
mnemonic = "InspectActionsFakeRule",
171172
command = "echo 'hello' > %s" % out_file.basename,
172173
outputs = [out_file],
173174
)
@@ -202,6 +203,7 @@ example_aspect = aspect(implementation = _example_aspect_impl)
202203
def _inspect_aspect_fake_rule(ctx):
203204
out_file = ctx.actions.declare_file("out.txt")
204205
ctx.actions.run_shell(
206+
mnemonic = "InspectAspectFakeRule",
205207
command = "echo 'hello' > %s" % out_file.basename,
206208
outputs = [out_file],
207209
)

tests/unittest_tests.bzl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ def _inspect_actions_test(ctx):
203203
def _inspect_actions_fake_rule(ctx):
204204
out_file = ctx.actions.declare_file("out.txt")
205205
ctx.actions.run_shell(
206+
mnemonic = "InspectActionsFakeRule",
206207
command = "echo 'hello' > %s" % out_file.basename,
207208
outputs = [out_file],
208209
)
@@ -247,6 +248,7 @@ def _inspect_aspect_test(ctx):
247248
def _inspect_aspect_fake_rule(ctx):
248249
out_file = ctx.actions.declare_file("out.txt")
249250
ctx.actions.run_shell(
251+
mnemonic = "InspectAspectFakeRule",
250252
command = "echo 'hello' > %s" % out_file.basename,
251253
outputs = [out_file],
252254
)

0 commit comments

Comments
 (0)