summaryrefslogtreecommitdiff
path: root/testsuite/tests/formatting/test_locations.ml
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/formatting/test_locations.ml')
-rw-r--r--testsuite/tests/formatting/test_locations.ml45
1 files changed, 31 insertions, 14 deletions
diff --git a/testsuite/tests/formatting/test_locations.ml b/testsuite/tests/formatting/test_locations.ml
index b821f626ae..87bce8c613 100644
--- a/testsuite/tests/formatting/test_locations.ml
+++ b/testsuite/tests/formatting/test_locations.ml
@@ -1,20 +1,37 @@
-(* TEST
-compile_only="true"
-* setup-ocamlc.byte-build-env
-** ocamlc.byte
-flags="-g -dno-unique-ids -dno-locations -dsource -dparsetree -dtypedtree -dlambda"
-*** check-ocamlc.byte-output
-compiler_reference =
- "${test_source_directory}/test_locations.dno-locations.ocamlc.reference"
+(* TEST_BELOW
+Filler_text_a
+dded_to_preserve_locations_wh
+ile_translatin
+g_from_old_syntax__Filler_text_added_to_preserve_locations_while_translating_from_o
+ld_syntax__Filler_text_added
+_to_preserve_locatio
+ns_while_translating_from_old_syntax__Filler_text_added_to_preserve_locati
-* setup-ocamlc.byte-build-env
-** ocamlc.byte
-flags="-g -dno-unique-ids -dlocations -dsource -dparsetree -dtypedtree -dlambda"
-*** check-ocamlc.byte-output
-compiler_reference =
- "${test_source_directory}/test_locations.dlocations.ocamlc.reference"
+ons_while_translating_from_ol
+d_syntax__Fill
+er_text_added_to_preserve_locations_while_translating_from_old_syntax__Filler_te
+xt_added_to_preserve_locatio
+ns_while_translating
+_from_old_syntax__Filler_text_added_to_preserve_locations_while_transla
*)
let rec fib = function
| 0 | 1 -> 1
| n -> fib (n - 1) + fib (n - 2)
;;
+
+(* TEST
+ compile_only = "true";
+ {
+ setup-ocamlc.byte-build-env;
+ flags = "-g -dno-unique-ids -dno-locations -dsource -dparsetree -dtypedtree -dlambda";
+ ocamlc.byte;
+ compiler_reference = "${test_source_directory}/test_locations.dno-locations.ocamlc.reference";
+ check-ocamlc.byte-output;
+ }{
+ setup-ocamlc.byte-build-env;
+ flags = "-g -dno-unique-ids -dlocations -dsource -dparsetree -dtypedtree -dlambda";
+ ocamlc.byte;
+ compiler_reference = "${test_source_directory}/test_locations.dlocations.ocamlc.reference";
+ check-ocamlc.byte-output;
+ }
+*)