File tree 5 files changed +11
-12
lines changed
test/blackbox-tests/test-cases/inline_tests
5 files changed +11
-12
lines changed Original file line number Diff line number Diff line change
1
+ - Use shorter path for inline-tests artifacts.
2
+ (@hhugo , #11307 )
Original file line number Diff line number Diff line change @@ -179,12 +179,11 @@ let directory_targets_of_library
179
179
| true ->
180
180
let dir_target =
181
181
let lib_name = Lib_name.Local. to_string (snd name) in
182
- let name = sprintf " inline_test_runner_%s" lib_name in
183
182
let inline_test_dir =
184
183
let inline_test_name = sprintf " %s.inline-tests" lib_name in
185
184
Path.Build. relative dir (" ." ^ inline_test_name)
186
185
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)
188
187
in
189
188
Path.Build.Map. singleton dir_target loc)
190
189
>> = when_enabled ~dir ~enabled_if
Original file line number Diff line number Diff line change @@ -85,10 +85,8 @@ include Sub_system.Register_end_point (struct
85
85
sprintf " %s.inline-tests" (Lib_name.Local. to_string lib_name)
86
86
in
87
87
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
92
90
let main_module =
93
91
let name = Module_name. of_string name in
94
92
Module. generated ~kind: Impl ~src_dir: inline_test_dir [ name ]
Original file line number Diff line number Diff line change @@ -5,14 +5,14 @@ First, build silently to avoid some noise
5
5
See that `test1/ runtest`, which uses `fake_backend_1, only runs one inline test runner
6
6
7
7
$ dune build -- display short @test1/runtest 2>&1 | grep alias
8
- inline_test_runner_test_lib1 alias test1/ runtest
8
+ run alias test1/ runtest
9
9
10
10
See that `test2/ runtest`, which uses `fake_backend_2`, runs one inline test runner per partition
11
11
12
12
$ 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
16
16
17
17
See that we indeed have 3 partitions
18
18
Original file line number Diff line number Diff line change 27
27
File " dune" , line 9 , characters 1 -40:
28
28
9 | (inline_tests (backend backend_simple)))
29
29
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^
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
31
31
[1 ]
32
32
33
33
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
41
41
File " dune" , line 9 , characters 1 -40:
42
42
9 | (inline_tests (backend backend_simple)))
43
43
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^
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
45
45
[1 ]
You can’t perform that action at this time.
0 commit comments