Merge pull request #7937 from rabbitmq/fixup-6466
Use `additional_beam instead` of `additional_srcs`
This commit is contained in:
commit
b71d19d014
|
|
@ -1112,8 +1112,8 @@ rabbitmq_integration_suite(
|
|||
rabbitmq_integration_suite(
|
||||
name = "runtime_parameters_SUITE",
|
||||
size = "small",
|
||||
additional_srcs = [
|
||||
"test/dummy_runtime_parameters.erl",
|
||||
additional_beam = [
|
||||
"test/dummy_runtime_parameters.beam",
|
||||
],
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -1207,3 +1207,10 @@ def test_suite_beam_files(name = "test_suite_beam_files"):
|
|||
erlc_opts = "//:test_erlc_opts",
|
||||
deps = ["//deps/amqp_client:erlang_app"],
|
||||
)
|
||||
erlang_bytecode(
|
||||
name = "runtime_parameters_SUITE_beam_files",
|
||||
testonly = True,
|
||||
srcs = ["test/runtime_parameters_SUITE.erl"],
|
||||
outs = ["test/runtime_parameters_SUITE.beam"],
|
||||
erlc_opts = "//:test_erlc_opts",
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue