File tree 6 files changed +51
-0
lines changed
testsuite/tests/ppx-contexts
6 files changed +51
-0
lines changed Original file line number Diff line number Diff line change @@ -253,6 +253,10 @@ Working version
253
253
- GPR#1333: turn off warning 40 by default
254
254
(Leo White)
255
255
256
+ - GPR#1336: -thread and -vmthread option information is propagated to
257
+ PPX rewriters.
258
+ (Jun Furuse, review by Alain Frisch)
259
+
256
260
### Other libraries:
257
261
258
262
- GPR#1178: remove the Num library for arbitrary-precision arithmetic.
Original file line number Diff line number Diff line change @@ -725,6 +725,8 @@ module PpxContext = struct
725
725
lid " open_modules" , make_list make_string ! Clflags. open_modules;
726
726
lid " for_package" , make_option make_string ! Clflags. for_package;
727
727
lid " debug" , make_bool ! Clflags. debug;
728
+ lid " use_threads" , make_bool ! Clflags. use_threads;
729
+ lid " use_vmthreads" , make_bool ! Clflags. use_vmthreads;
728
730
get_cookies ()
729
731
]
730
732
in
@@ -791,6 +793,10 @@ module PpxContext = struct
791
793
Clflags. for_package := get_option get_string payload
792
794
| "debug" ->
793
795
Clflags. debug := get_bool payload
796
+ | "use_threads" ->
797
+ Clflags. use_threads := get_bool payload
798
+ | "use_vmthreads" ->
799
+ Clflags. use_vmthreads := get_bool payload
794
800
| "cookies" ->
795
801
let l = get_list (get_pair get_string (fun x -> x)) payload in
796
802
cookies :=
Original file line number Diff line number Diff line change
1
+ BASEDIR =../..
2
+
3
+ INCLUDES =\
4
+ -I $(OTOPDIR ) /parsing \
5
+ -I $(OTOPDIR ) /utils \
6
+ -I $(OTOPDIR ) compilerlibs
7
+
8
+ .PHONY : run
9
+ run : program$(EXE ) test.reference
10
+ @echo " ... testing -thread and -vmthread are propagated to PPX:"
11
+ $(OCAMLC ) -c -thread -ppx ' $(OCAMLRUN) ./program$(EXE)' test.ml 2> test.result
12
+ $(OCAMLC ) -c -vmthread -ppx ' $(OCAMLRUN) ./program$(EXE)' test.ml 2>> test.result
13
+ @$(DIFF ) test.reference test.result > /dev/null \
14
+ && echo " => passed" || echo " => failed"
15
+
16
+ program$(EXE ) : program.ml Makefile
17
+ $(OCAMLC ) -o $@ $(INCLUDES ) -I ../../../compilerlibs ocamlcommon.cma ./program.ml
18
+
19
+ .PHONY : promote
20
+ promote : defaultpromote
21
+
22
+ .PHONY : clean
23
+ clean : defaultclean
24
+ @rm -f program$(EXE ) test.result * .cm*
25
+
26
+ include $(BASEDIR ) /makefiles/Makefile.common
Original file line number Diff line number Diff line change
1
+ (* A simple PPX *)
2
+
3
+ open Ast_mapper
4
+
5
+ let () =
6
+ register " test" (fun _ ->
7
+ Printf. eprintf " use_threads=%b\n " ! Clflags. use_threads;
8
+ Printf. eprintf " use_vmthreads=%b\n " ! Clflags. use_vmthreads;
9
+ default_mapper);
10
+
Original file line number Diff line number Diff line change
1
+ (* empty *)
Original file line number Diff line number Diff line change
1
+ use_threads=true
2
+ use_vmthreads=false
3
+ use_threads=false
4
+ use_vmthreads=true
You can’t perform that action at this time.
0 commit comments