File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,8 @@ Available tags are:
3838* ` js-only ` for tests that should only run in Javascript
3939* ` 32-bits-only ` for tests that should only run in 32 bits architectures
4040* ` 64-bits-only ` for tests that should only run in 64 bits architectures
41+ * ` fast-flambda ` for tests that might only pass when compiling with flambda, -O3
42+ and cross library inlining
4143* ` x-library-inlining-sensitive ` for tests that might only pass when compiling
4244 with cross library inlining switched on
4345
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ build: [
1212depends: [
1313 "ocaml" {>= "4.04.2"}
1414 "base"
15- "dune" {>= "1.5.1 "}
15+ "dune" {>= "2.0.0 "}
1616 "ppxlib" {>= "0.9.0"}
1717]
1818synopsis: "Syntax extension for writing in-line tests in ocaml code"
Original file line number Diff line number Diff line change @@ -115,7 +115,9 @@ let all_tags =
115115 ; " js-only"
116116 ; " 64-bits-only"
117117 ; " 32-bits-only"
118- ; " x-library-inlining-sensitive" ]
118+ ; " fast-flambda"
119+ ; " x-library-inlining-sensitive"
120+ ]
119121
120122let validate_tag tag =
121123 if not (List. mem all_tags tag ~equal: String. equal)
You can’t perform that action at this time.
0 commit comments