Skip to content

Commit 177fc6c

Browse files
committed
v0.14-preview.121.14+118
1 parent b898e57 commit 177fc6c

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

ppx_inline_test.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build: [
1212
depends: [
1313
"ocaml" {>= "4.04.2"}
1414
"base"
15-
"dune" {>= "1.5.1"}
15+
"dune" {>= "2.0.0"}
1616
"ppxlib" {>= "0.9.0"}
1717
]
1818
synopsis: "Syntax extension for writing in-line tests in ocaml code"

src/ppx_inline_test.ml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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

120122
let validate_tag tag =
121123
if not (List.mem all_tags tag ~equal:String.equal)

0 commit comments

Comments
 (0)