You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
948 B

# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
TESTS_DIR = ../..
ROOT_DIR = $(TESTS_DIR)/../..
include $(TESTS_DIR)/base.make
toplevel.exp.test: $(INFERTOP_BIN) $(SCRIPT_DIR)/infer_repl \
$(SCRIPT_DIR)/toplevel_init $(INFER_DIR)/tests/repl/infer_batch_script.mltop
$(QUIET)$(call silent_on_success,Testing infer OCaml REPL,\
$(SCRIPT_DIR)/infer_repl $(INFER_DIR)/tests/repl/infer_batch_script.mltop | \
sed -e 's#^The files .*/extLib.cma$$#The files [...]/extLib.cma#' \
-e 's#^and .*/infertop.bc.exe$$#and [...]/infertop.bc.exe#' \
> $@)
.PHONY: print
print: toplevel.exp.test
.PHONY: test
test: toplevel.exp.test
$(QUIET)diff -u toplevel.exp $<
.PHONY: replace
replace: toplevel.exp.test
$(QUIET)$(COPY) $< toplevel.exp
.PHONY: clean
clean:
$(QUIET)$(REMOVE) toplevel.exp.test