Skip to content

Commit

Permalink
v0.14-preview.121.14+118
Browse files Browse the repository at this point in the history
  • Loading branch information
xclerc committed Dec 3, 2019
1 parent b898e57 commit 177fc6c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -38,6 +38,8 @@ Available tags are:
* `js-only` for tests that should only run in Javascript
* `32-bits-only` for tests that should only run in 32 bits architectures
* `64-bits-only` for tests that should only run in 64 bits architectures
* `fast-flambda` for tests that might only pass when compiling with flambda, -O3
and cross library inlining
* `x-library-inlining-sensitive` for tests that might only pass when compiling
with cross library inlining switched on

Expand Down
2 changes: 1 addition & 1 deletion ppx_inline_test.opam
Expand Up @@ -12,7 +12,7 @@ build: [
depends: [
"ocaml" {>= "4.04.2"}
"base"
"dune" {>= "1.5.1"}
"dune" {>= "2.0.0"}
"ppxlib" {>= "0.9.0"}
]
synopsis: "Syntax extension for writing in-line tests in ocaml code"
Expand Down
4 changes: 3 additions & 1 deletion src/ppx_inline_test.ml
Expand Up @@ -115,7 +115,9 @@ let all_tags =
; "js-only"
; "64-bits-only"
; "32-bits-only"
; "x-library-inlining-sensitive" ]
; "fast-flambda"
; "x-library-inlining-sensitive"
]

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

0 comments on commit 177fc6c

Please sign in to comment.