[Test determinator] Minor fixes

Reviewed By: ddino

Differential Revision: D8124094

fbshipit-source-id: fb228cc
master
Martino Luca 7 years ago committed by Facebook Github Bot
parent 93c2d7a4f4
commit 782f298674

@ -57,9 +57,12 @@ module MethodRangeMap = struct
in in
let range = (start_location, end_location) in let range = (start_location, end_location) in
let classname, methodname = split_class_method_name decl.method_name in let classname, methodname = split_class_method_name decl.method_name in
let signature = match decl.signature with Some s -> s | _ -> "" in match decl.signature with
let key = JavaProfilerSamples.create ~classname ~methodname ~signature in | Some signature ->
RangeMap.add key range acc ) let key = JavaProfilerSamples.create ~classname ~methodname ~signature in
RangeMap.add key range acc
| None ->
acc )
in in
map := map' map := map'
| _ -> | _ ->

@ -231,7 +231,7 @@ module JNI = struct
| [Method m] -> | [Method m] ->
m m
| _ -> | _ ->
L.(die UserError "The input provided did not parse as one JNI method signature") L.(die UserError "'%s' did not parse as one JNI method signature" str)
module VISIBLE_FOR_TESTING_DO_NOT_USE_DIRECTLY = struct module VISIBLE_FOR_TESTING_DO_NOT_USE_DIRECTLY = struct

Loading…
Cancel
Save