summaryrefslogtreecommitdiff
path: root/testsuite/tests/utils
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/utils')
-rw-r--r--testsuite/tests/utils/edit_distance.ml8
-rw-r--r--testsuite/tests/utils/find_first_mono.ml8
-rw-r--r--testsuite/tests/utils/magic_number.ml6
-rw-r--r--testsuite/tests/utils/overflow_detection.ml8
-rw-r--r--testsuite/tests/utils/test_strongly_connected_components.ml10
5 files changed, 19 insertions, 21 deletions
diff --git a/testsuite/tests/utils/edit_distance.ml b/testsuite/tests/utils/edit_distance.ml
index 1ac1070136..cf2e60cba9 100644
--- a/testsuite/tests/utils/edit_distance.ml
+++ b/testsuite/tests/utils/edit_distance.ml
@@ -1,8 +1,8 @@
(* TEST
-include config
-include testing
-binary_modules = "config build_path_prefix_map misc identifiable numbers"
-* bytecode
+ include config;
+ include testing;
+ binary_modules = "config build_path_prefix_map misc identifiable numbers";
+ bytecode;
*)
let edit_distance = Misc.edit_distance
diff --git a/testsuite/tests/utils/find_first_mono.ml b/testsuite/tests/utils/find_first_mono.ml
index 80ea5e6255..1970eb9e40 100644
--- a/testsuite/tests/utils/find_first_mono.ml
+++ b/testsuite/tests/utils/find_first_mono.ml
@@ -1,8 +1,8 @@
(* TEST
-include config
-include testing
-binary_modules = "config build_path_prefix_map misc"
-* bytecode
+ include config;
+ include testing;
+ binary_modules = "config build_path_prefix_map misc";
+ bytecode;
*)
let check_and_count_calls n =
diff --git a/testsuite/tests/utils/magic_number.ml b/testsuite/tests/utils/magic_number.ml
index a443e253e5..42664ec80b 100644
--- a/testsuite/tests/utils/magic_number.ml
+++ b/testsuite/tests/utils/magic_number.ml
@@ -1,7 +1,7 @@
(* TEST
-include config
-binary_modules = "config build_path_prefix_map misc"
-* bytecode
+ include config;
+ binary_modules = "config build_path_prefix_map misc";
+ bytecode;
*)
open Misc
diff --git a/testsuite/tests/utils/overflow_detection.ml b/testsuite/tests/utils/overflow_detection.ml
index 11f3aafaeb..c9d984b55b 100644
--- a/testsuite/tests/utils/overflow_detection.ml
+++ b/testsuite/tests/utils/overflow_detection.ml
@@ -1,8 +1,8 @@
(* TEST
-include config
-include testing
-binary_modules = "config build_path_prefix_map misc identifiable numbers"
-* bytecode
+ include config;
+ include testing;
+ binary_modules = "config build_path_prefix_map misc identifiable numbers";
+ bytecode;
*)
let print_int i =
diff --git a/testsuite/tests/utils/test_strongly_connected_components.ml b/testsuite/tests/utils/test_strongly_connected_components.ml
index 05845228b5..32cdc6bb25 100644
--- a/testsuite/tests/utils/test_strongly_connected_components.ml
+++ b/testsuite/tests/utils/test_strongly_connected_components.ml
@@ -1,10 +1,8 @@
(* TEST
-include config
-include testing
-binary_modules =
- "config build_path_prefix_map misc identifiable numbers \
- strongly_connected_components"
-* bytecode
+ include config;
+ include testing;
+ binary_modules = "config build_path_prefix_map misc identifiable numbers strongly_connected_components";
+ bytecode;
*)
module Int = Numbers.Int