Skip to content
Snippets Groups Projects
Commit 3de7cd2d authored by Boris Yakobowski's avatar Boris Yakobowski
Browse files

Merge branch 'feature/makefile-tests' into 'master'

[Makefile] Precise flags for test module compilation

Needed for changes introduced by frama-c/frama-c!930

See merge request !69
parents a944637e 73de268c
No related branches found
No related tags found
No related merge requests found
Tests: Tests:
script: script:
- ~oci/oci/bin/bf_client.native run --socket ~oci/data/oci-data/oci.socket --rootfs 1 --frama-c master --E-ACSL $(git rev-parse HEAD) E-ACSL - ~oci/oci/bin/bf_client.native run --socket ~oci/data/oci-data/oci.socket --rootfs 1 --E-ACSL $CI_BUILD_REF --branch $CI_BUILD_REF_NAME E-ACSL
tags: tags:
except: except:
- tags - tags
......
...@@ -112,11 +112,16 @@ $(PLUGIN_DIR)/local_config.ml: $(PLUGIN_DIR)/Makefile.in VERSION ...@@ -112,11 +112,16 @@ $(PLUGIN_DIR)/local_config.ml: $(PLUGIN_DIR)/Makefile.in VERSION
ifeq (@MAY_RUN_TESTS@,yes) ifeq (@MAY_RUN_TESTS@,yes)
$(PLUGIN_DIR)/tests/print.cmxs: OFLAGS=-I $(FRAMAC_LIB) $(PLUGIN_DIR)/tests/print.cmxs: OFLAGS=-I $(FRAMAC_LIB) -I tests
$(PLUGIN_DIR)/tests/print.cmo: BFLAGS=-I $(FRAMAC_LIB) $(PLUGIN_DIR)/tests/print.cmo: BFLAGS=-I $(FRAMAC_LIB) -I tests
$(PLUGIN_DIR)/tests/print.cmx: OFLAGS=-I $(FRAMAC_LIB) -I tests
PLUGIN_TESTS_DIRS := reject runtime bts gmp no-main PLUGIN_TESTS_DIRS := reject runtime bts gmp no-main
E_ACSL_TESTS: $(PLUGIN_DIR)/tests/test_config \ PLUGIN_TESTS_LIB:=tests/print.ml
E_ACSL_TESTS: $(PLUGIN_DIR)/tests/test_config
$(PLUGIN_DIR)/tests/ptests_config: \
$(PLUGIN_DIR)/tests/print.cmxs \ $(PLUGIN_DIR)/tests/print.cmxs \
$(PLUGIN_DIR)/tests/print.cmo $(PLUGIN_DIR)/tests/print.cmo
......
...@@ -3,7 +3,7 @@ module Printer_extension(X:Printer.PrinterClass) = struct ...@@ -3,7 +3,7 @@ module Printer_extension(X:Printer.PrinterClass) = struct
class printer = object class printer = object
inherit Printer.extensible_printer () as super inherit Printer.extensible_printer () as super
method global fmt g = method! global fmt g =
let loc, _ = Cil_datatype.Global.loc g in let loc, _ = Cil_datatype.Global.loc g in
let file = loc.Lexing.pos_fname in let file = loc.Lexing.pos_fname in
if file = "" || List.exists if file = "" || List.exists
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment