Skip to content

Commit a1ffdc0

Browse files
committed
test: promote positive changes to the test suite
1 parent b21c8ba commit a1ffdc0

File tree

8 files changed

+32
-23
lines changed

8 files changed

+32
-23
lines changed

tests/test-dirs/locate-type.t/run.t

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"file": "$TESTCASE_ROOT/a.ml",
88
"pos": {
99
"line": 2,
10-
"col": 2
10+
"col": 7
1111
}
1212
},
1313
"notifications": []
@@ -20,7 +20,7 @@
2020
"file": "$TESTCASE_ROOT/a.ml",
2121
"pos": {
2222
"line": 2,
23-
"col": 2
23+
"col": 7
2424
}
2525
},
2626
"notifications": []

tests/test-dirs/locate/context-detection/cd-field.t/run.t

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"file": "$TESTCASE_ROOT/field.ml",
77
"pos": {
88
"line": 1,
9-
"col": 0
9+
"col": 5
1010
}
1111
},
1212
"notifications": []
@@ -19,7 +19,7 @@
1919
"file": "$TESTCASE_ROOT/field.ml",
2020
"pos": {
2121
"line": 1,
22-
"col": 0
22+
"col": 5
2323
}
2424
},
2525
"notifications": []
@@ -34,7 +34,7 @@ the field bar rather than the identifier.
3434
"file": "$TESTCASE_ROOT/field.ml",
3535
"pos": {
3636
"line": 10,
37-
"col": 2
37+
"col": 7
3838
}
3939
},
4040
"notifications": []

tests/test-dirs/locate/context-detection/cd-label.t/run.t

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@
4242
}
4343

4444
FIXME: this is not a very satisfying answer.
45-
We could expect 2:12 or at least 2:4
45+
We could expect 2:12
4646
$ $MERLIN single locate -look-for ml -position 3:24 \
4747
> -filename ./record.ml < ./record.ml | jq '.value'
4848
{
4949
"file": "$TESTCASE_ROOT/record.ml",
5050
"pos": {
5151
"line": 1,
52-
"col": 0
52+
"col": 5
5353
}
5454
}
5555

tests/test-dirs/locate/context-detection/cd-test.t/run.t

+14-4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Trying them all:
1313
"notifications": []
1414
}
1515

16+
FIXME we would expect 3:13
17+
1618
$ $MERLIN single locate -look-for ml -position 7:17 -filename ./test.ml < ./test.ml
1719
{
1820
"class": "return",
@@ -54,14 +56,16 @@ FIXME this should say "Already at definition point" (we're defining the label):
5456
"notifications": []
5557
}
5658

59+
We expect 1:5
60+
5761
$ $MERLIN single locate -look-for ml -position 13:16 -filename ./test.ml < ./test.ml
5862
{
5963
"class": "return",
6064
"value": {
6165
"file": "$TESTCASE_ROOT/test.ml",
6266
"pos": {
6367
"line": 1,
64-
"col": 0
68+
"col": 5
6569
}
6670
},
6771
"notifications": []
@@ -89,14 +93,16 @@ FIXME we failed to parse/reconstruct the ident, that's interesting
8993
"notifications": []
9094
}
9195

96+
We expect 1:5
97+
9298
$ $MERLIN single locate -look-for ml -position 16:20 -filename ./test.ml < ./test.ml
9399
{
94100
"class": "return",
95101
"value": {
96102
"file": "$TESTCASE_ROOT/test.ml",
97103
"pos": {
98104
"line": 1,
99-
"col": 0
105+
"col": 5
100106
}
101107
},
102108
"notifications": []
@@ -115,6 +121,8 @@ FIXME we failed to parse/reconstruct the ident, that's interesting
115121
"notifications": []
116122
}
117123

124+
FIXME unprecise, we expect 11:11
125+
118126
$ $MERLIN single locate -look-for ml -position 18:15 -filename ./test.ml < ./test.ml
119127
{
120128
"class": "return",
@@ -144,14 +152,16 @@ FIXME this should jump to line 11:
144152
"notifications": []
145153
}
146154

155+
FIXME unprecise, we want 13:12
156+
147157
$ $MERLIN single locate -look-for ml -position 23:13 -filename ./test.ml < ./test.ml
148158
{
149159
"class": "return",
150160
"value": {
151161
"file": "$TESTCASE_ROOT/test.ml",
152162
"pos": {
153163
"line": 13,
154-
"col": 0
164+
"col": 5
155165
}
156166
},
157167
"notifications": []
@@ -177,7 +187,7 @@ FIXME this should jump to line 11:
177187
"file": "$TESTCASE_ROOT/test.ml",
178188
"pos": {
179189
"line": 13,
180-
"col": 0
190+
"col": 5
181191
}
182192
},
183193
"notifications": []

tests/test-dirs/locate/functors/f-all_local.t/run.t

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Check that we can jump locally inside the functor:
77
"file": "$TESTCASE_ROOT/all_local.ml",
88
"pos": {
99
"line": 12,
10-
"col": 2
10+
"col": 7
1111
}
1212
},
1313
"notifications": []
@@ -53,7 +53,7 @@ Check the argument is substituted for the parameter
5353
"file": "$TESTCASE_ROOT/all_local.ml",
5454
"pos": {
5555
"line": 6,
56-
"col": 2
56+
"col": 7
5757
}
5858
},
5959
"notifications": []

tests/test-dirs/locate/functors/f-from_application.t/run.t

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Jump from inside the functor application to inside the functor application:
2323
"file": "$TESTCASE_ROOT/from_application.ml",
2424
"pos": {
2525
"line": 14,
26-
"col": 4
26+
"col": 9
2727
}
2828
},
2929
"notifications": []
@@ -38,7 +38,7 @@ Jump from inside the functor application to the outer scope:
3838
"file": "$TESTCASE_ROOT/from_application.ml",
3939
"pos": {
4040
"line": 9,
41-
"col": 0
41+
"col": 5
4242
}
4343
},
4444
"notifications": []

tests/test-dirs/locate/functors/f-nested_applications.t/run.t

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"file": "$TESTCASE_ROOT/nested_applications.ml",
88
"pos": {
99
"line": 10,
10-
"col": 2
10+
"col": 7
1111
}
1212
},
1313
"notifications": []
@@ -21,7 +21,7 @@
2121
"file": "$TESTCASE_ROOT/nested_applications.ml",
2222
"pos": {
2323
"line": 10,
24-
"col": 2
24+
"col": 7
2525
}
2626
},
2727
"notifications": []
@@ -35,7 +35,7 @@
3535
"file": "$TESTCASE_ROOT/nested_applications.ml",
3636
"pos": {
3737
"line": 10,
38-
"col": 2
38+
"col": 7
3939
}
4040
},
4141
"notifications": []
@@ -49,7 +49,7 @@
4949
"file": "$TESTCASE_ROOT/nested_applications.ml",
5050
"pos": {
5151
"line": 10,
52-
"col": 2
52+
"col": 7
5353
}
5454
},
5555
"notifications": []
@@ -63,7 +63,7 @@
6363
"file": "$TESTCASE_ROOT/nested_applications.ml",
6464
"pos": {
6565
"line": 10,
66-
"col": 2
66+
"col": 7
6767
}
6868
},
6969
"notifications": []

tests/test-dirs/locate/locate-constrs.t

+2-3
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,14 @@ We expect 1:27
1818
}
1919
}
2020

21-
FIXME: this is not a very satisfying answer.
22-
We expect 1:18
21+
We expect 1:23
2322
$ $MERLIN single locate -look-for ml -position 2:12 \
2423
> -filename ./constr.ml < ./constr.ml | jq '.value'
2524
{
2625
"file": "$TESTCASE_ROOT/constr.ml",
2726
"pos": {
2827
"line": 1,
29-
"col": 18
28+
"col": 23
3029
}
3130
}
3231

0 commit comments

Comments
 (0)