Skip to content

Commit 6dd5d4f

Browse files
committed
Reduce path size for inline-tests artifacts
Signed-off-by: Hugo Heuzard <[email protected]>
1 parent 1ccb583 commit 6dd5d4f

File tree

5 files changed

+11
-12
lines changed

5 files changed

+11
-12
lines changed

doc/changes/11307.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- Use shorter path for inline-tests artifacts.
2+
(@hhugo, #11307)

src/dune_rules/dir_status.ml

+1-2
Original file line numberDiff line numberDiff line change
@@ -179,12 +179,11 @@ let directory_targets_of_library
179179
| true ->
180180
let dir_target =
181181
let lib_name = Lib_name.Local.to_string (snd name) in
182-
let name = sprintf "inline_test_runner_%s" lib_name in
183182
let inline_test_dir =
184183
let inline_test_name = sprintf "%s.inline-tests" lib_name in
185184
Path.Build.relative dir ("." ^ inline_test_name)
186185
in
187-
Path.Build.relative inline_test_dir (name ^ Js_of_ocaml.Ext.wasm_dir)
186+
Path.Build.relative inline_test_dir ("run" ^ Js_of_ocaml.Ext.wasm_dir)
188187
in
189188
Path.Build.Map.singleton dir_target loc)
190189
>>= when_enabled ~dir ~enabled_if

src/dune_rules/inline_tests.ml

+2-4
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,8 @@ include Sub_system.Register_end_point (struct
8585
sprintf "%s.inline-tests" (Lib_name.Local.to_string lib_name)
8686
in
8787
let inline_test_dir = Path.Build.relative dir ("." ^ inline_test_name) in
88-
let obj_dir = Obj_dir.make_exe ~dir:inline_test_dir ~name:inline_test_name in
89-
let name =
90-
sprintf "inline_test_runner_%s" (Lib_name.Local.to_string (snd lib.name))
91-
in
88+
let name = "run" in
89+
let obj_dir = Obj_dir.make_exe ~dir:inline_test_dir ~name in
9290
let main_module =
9391
let name = Module_name.of_string name in
9492
Module.generated ~kind:Impl ~src_dir:inline_test_dir [ name ]

test/blackbox-tests/test-cases/inline_tests/parallel.t/run.t

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ First, build silently to avoid some noise
55
See that `test1/runtest`, which uses `fake_backend_1, only runs one inline test runner
66

77
$ dune build --display short @test1/runtest 2>&1 | grep alias
8-
inline_test_runner_test_lib1 alias test1/runtest
8+
run alias test1/runtest
99

1010
See that `test2/runtest`, which uses `fake_backend_2`, runs one inline test runner per partition
1111

1212
$ dune build --display short @test2/runtest 2>&1 | grep alias
13-
inline_test_runner_test_lib2 alias test2/runtest
14-
inline_test_runner_test_lib2 alias test2/runtest
15-
inline_test_runner_test_lib2 alias test2/runtest
13+
run alias test2/runtest
14+
run alias test2/runtest
15+
run alias test2/runtest
1616

1717
See that we indeed have 3 partitions
1818

test/blackbox-tests/test-cases/inline_tests/simple.t

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
File "dune", line 9, characters 1-40:
2828
9 | (inline_tests (backend backend_simple)))
2929
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
30-
Fatal error: exception File ".foo_simple.inline-tests/inline_test_runner_foo_simple.ml-gen", line 1, characters 40-46: Assertion failed
30+
Fatal error: exception File ".foo_simple.inline-tests/run.ml-gen", line 1, characters 40-46: Assertion failed
3131
[1]
3232

3333
The expected behavior for the following three tests is to output nothing: the tests are disabled or ignored.
@@ -41,5 +41,5 @@ The expected behavior for the following three tests is to output nothing: the te
4141
File "dune", line 9, characters 1-40:
4242
9 | (inline_tests (backend backend_simple)))
4343
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44-
Fatal error: exception File ".foo_simple.inline-tests/inline_test_runner_foo_simple.ml-gen", line 1, characters 40-46: Assertion failed
44+
Fatal error: exception File ".foo_simple.inline-tests/run.ml-gen", line 1, characters 40-46: Assertion failed
4545
[1]

0 commit comments

Comments
 (0)