File tree 6 files changed +66
-21
lines changed 6 files changed +66
-21
lines changed File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ (env
2
+ (with-effects
3
+ (flags
4
+ (:standard -w -38))
5
+ (js_of_ocaml
6
+ (flags
7
+ (:standard --effects=double-translation))
8
+ ;; separate compilation doesn't yet work when using
9
+ ;; '--effect=double-translation' since Dune doesn't know it should compile a
10
+ ;; different version of the dependencies.
11
+ ;; TODO: remove once support in ocaml/dune#11222 is released.
12
+ (compilation_mode whole_program)))
13
+ (_
14
+ (flags
15
+ (:standard -w -38))
16
+ (js_of_ocaml
17
+ (flags
18
+ (:standard --effects=double-translation))
19
+ ;; separate compilation doesn't yet work when using
20
+ ;; '--effect=double-translation' since Dune doesn't know it should compile a
21
+ ;; different version of the dependencies.
22
+ ;; TODO: remove once support in ocaml/dune#11222 is released.
23
+ (compilation_mode whole_program))))
24
+
25
+ (copy_files# ../*.ml)
26
+
27
+ (tests
28
+ (build_if
29
+ (>= %{ocaml_version} 5))
30
+ (names
31
+ assume_no_perform
32
+ assume_no_perform_unhandled
33
+ assume_no_perform_nested_handler)
34
+ (libraries js_of_ocaml)
35
+ (action
36
+ (ignore-outputs
37
+ (with-accepted-exit-codes
38
+ 0
39
+ (run node %{test}))))
40
+ (modes js))
Original file line number Diff line number Diff line change 10
10
(>= %{ocaml_version} 5))
11
11
(inline_tests
12
12
(modes js wasm best))
13
+ (modules
14
+ (:standard
15
+ \
16
+ assume_no_perform
17
+ assume_no_perform_unhandled
18
+ assume_no_perform_nested_handler))
13
19
(preprocess
14
20
(pps ppx_expect)))
21
+
22
+ (tests
23
+ (build_if
24
+ (>= %{ocaml_version} 5))
25
+ (names
26
+ assume_no_perform
27
+ assume_no_perform_unhandled
28
+ assume_no_perform_nested_handler)
29
+ (modules
30
+ assume_no_perform
31
+ assume_no_perform_unhandled
32
+ assume_no_perform_nested_handler)
33
+ (libraries js_of_ocaml)
34
+ (action
35
+ (ignore-outputs
36
+ (with-accepted-exit-codes
37
+ 0
38
+ (run node %{test}))))
39
+ (modes js wasm))
Original file line number Diff line number Diff line change 34
34
test_lazy
35
35
used_cont)
36
36
(modules
37
- (:standard
38
- \
39
- unhandled_unlinked
40
- assume_no_perform
41
- assume_no_perform_unhandled
42
- assume_no_perform_nested_handler))
37
+ (:standard \ unhandled_unlinked))
43
38
(modes js wasm))
44
39
45
40
(tests
54
49
(run node %{test}))
55
50
(run cat)))
56
51
(modes js wasm))
57
-
58
- (tests
59
- (build_if
60
- (>= %{ocaml_version} 5))
61
- (names
62
- assume_no_perform
63
- assume_no_perform_unhandled
64
- assume_no_perform_nested_handler)
65
- (libraries js_of_ocaml)
66
- (action
67
- (ignore-outputs
68
- (with-accepted-exit-codes
69
- 0
70
- (run node %{test}))))
71
- (modes js wasm))
You can’t perform that action at this time.
0 commit comments