Skip to content
Snippets Groups Projects
Commit bdc1fa5e authored by Allan Blanchard's avatar Allan Blanchard
Browse files

Merge remote-tracking branch 'origin/feature/dune/feedback' into feature/dune/feedback

parents 01b03ab3 1242bfaf
No related branches found
No related tags found
No related merge requests found
...@@ -68,11 +68,15 @@ function Usage ...@@ -68,11 +68,15 @@ function Usage
echo "" echo ""
echo "VARIABLES" echo "VARIABLES"
echo "" echo ""
echo " FRAMAC_WP_CACHE ($FRAMAC_WP_CACHE)" echo " FRAMAC_WP_CACHE"
echo " Management mode of wp-cache" echo " Management mode of wp-cache ($FRAMAC_WP_CACHE)"
echo "" echo ""
echo " FRAMAC_WP_CACHEDIR ($FRAMAC_WP_CACHEDIR)" echo " FRAMAC_WP_QUALIF"
echo " Use $FRAMAC_WP_CACHE_GIT" echo " FRAMAC_WP_CACHEDIR"
echo " Location of wp-cache ($FRAMAC_WP_CACHEDIR)"
if [ ! -d $FRAMAC_WP_CACHEDIR ]; then
echo " About to clone from $FRAMAC_WP_CACHE_GIT"
fi
echo " Please, always push to master branch" echo " Please, always push to master branch"
echo "" echo ""
} }
...@@ -126,12 +130,14 @@ function SetEnv ...@@ -126,12 +130,14 @@ function SetEnv
FRAMAC_WP_CACHE=offline FRAMAC_WP_CACHE=offline
Echo "Set FRAMAC_WP_CACHE=$FRAMAC_WP_CACHE" Echo "Set FRAMAC_WP_CACHE=$FRAMAC_WP_CACHE"
fi fi
if [ "$FRAMAC_WP_QUALIF" != "" ]; then
if [ "$FRAMAC_WP_CACHEDIR" = "" ]; then FRAMAC_WP_CACHEDIR=$FRAMAC_WP_QUALIF
FRAMAC_WP_CACHEDIR=./.wp-cache else
Echo "Set FRAMAC_WP_CACHEDIR=$FRAMAC_WP_CACHEDIR" if [ "$FRAMAC_WP_CACHEDIR" = "" ]; then
FRAMAC_WP_CACHEDIR=./.wp-cache
Echo "Set FRAMAC_WP_CACHEDIR=$FRAMAC_WP_CACHEDIR"
fi
fi fi
} }
function CloneCache function CloneCache
......
# Running qualif tests # Audience
- Be sure that you have installed the appropriate versions of This manual is _only_ intended for Frama-C developpers who need to execute tests
alt-ergo and coq _before_ having compiled Frama-C. that are using WP with external provers.
- use `make wp-qualif` in the toplevel Frama-C directory
## WP Tests Configurations
# Test Suites
There are two configurations for WP tests:
Here is a short description of the WP test suites: - the default configuration, which does not use external provers
- the `qualif` configuration, which _does_ use external provers
- `tests/wp` tests dedicated to the VC generation engine and proof strategy
- `tests/wp_tip` tests associated to the script engine It is highly recommended to use the `./bin/test.sh` wrapper for executing WP tests.
- `tests/wp_acsl` tests of generic C/ACSL concepts See section « WP Tests Recipes » below for details.
- `tests/wp_typed` tests dedicated to aliasing memory model
- `tests/wp_hoare` tests dedicated to non-aliasing memory model Advanced users might consider managing the cache on their own.
- `tests/wp_region` tests dedicated to region memory model See section « Advanced Cache Management. »
- `tests/wp_manual` tests for generating the examples of the reference manual
- `tests/wp_gallery` non-regression tests for representative real size usage of WP ## WP Tests Recipes
- `tests/wp_plugin` general purpose WP plug-in options
- `tests/wp_bts` non-regression tests associated to GitLab issues; eg. `issue_xxx.i` When using the `./bin/test.sh` test wrapper, you don't need to configure the
environment variables mentionned above: the script automatically manages them for you.
Deprecated test suites that shall be moved around:
Before executing WP tests in qualif configuration, you shall initiate the WP-cache.
- `tests/wp_usage` mostly movable to `tests/wp_plugin` This is done automatically by:
- `tests/wp_store` mostly movable to `tests/wp_typed`
$ ./bin/test.sh -p
# Test Configurations
The first time it is executed, it will clone the `wp-cache` Git repository in `./.wp-cache`.
There are two test configurations: Next times, this same command will automatically pull the latest cache entries.
- the default one requires _no_ prover execution;
- the `qualif` configuration uses the `wp-cache` global cache, `Alt-Ergo` and `Coq`. You check tests are up-to-date with:
The test configurations `tests/test_config` and `tests/test_config_qualif` are $ ./bin/tests.sh src/plugins/wp/tests
carefully crafted to fit with the constraints of the GitLab
Continuous Integration system. In particular, the `qualif` configuration is When a test complains that a test result is missing from wp-cache, simply re-run
designed for being used with a clone of the global WP cache, see the desired tests in « update » mode:
installation instructions below.
$ ./bin/tests.sh src/plugins/wp/tests/… -u
To re-run tests, use by default the following commands:
- `make Wp_TESTS` for the default test configuration; If neceassary, you may `dune promote` the new oracles and, correspondly,
- `make wp-qualif` for the `qualif` configuration. you may `git commit` the new cache entries from `./.wp-cache` directory.
When using the `wp-qualif` target, it will clone the global wp-cache at `../wp-cache` by default, ## Advanced Cache Management
if not yet present. To choose another place, consult the « Global WP Cache »
installation instructions below. It is possible to share the wp-cache repository among different plug-ins.
The WP makefile provides several targets to automate cache management. It is highly The `./bin/test.sh` uses, in order of proprity:
recommanded to use them most of the time: - `FRAMAC_WP_QUALIF` environment variable,
- `FRAMAC_WP_CACHEDIR` environement variable,
- `make wp-qualif` re-runs qualif tests; no new cache entry is created, though. - local `./.wp-cache` directory.
- `make wp-qualif-env` prints the environment variables for wp-qualif.
- `make wp-qualif-update` re-runs and creates missing cache entries. It is _not_ recommended to use the `FRAMAC_WP_CACHEDIR` variable in your default
- `make wp-qualif-upgrade` creates missing cache entries _and_ updates test scripts if necessary. shell setup, unless is it a temporary directory (eg. `/tmp/wp-sandbox`) since
- `make wp-qualif-push` commits and pushes all new cache entries to the GitLab repository. _every_ run of `frama-c -wp` might then use it by default. Be carefull if you do so.
- `make wp-qualif-status` displays a very short git status of your local wp-cache.
However, it is _highly_ recommended for frama-c developpers to export the
To execute a given test by hand in `qualif` configuration, use the following `FRAMAC_WP_QUALIF` variable in their default shell setup.
commands in a _local_ shell:
$ export FRAMAC_WP_CACHE=update
$ export FRAMAC_WP_CACHEDIR=<path-to-wp-cache>
$ ./bin/ptests.opt src/plugins/wp/tests/xxx/yyy.i -config qualif [-show|-update]
It is _highly_ recommanded to _not_ set the `FRAMAC_WP_xxx` variables globally;
doing so would causing WP to add new cache entries to the global « qualif » cache
from all your projects around. Consult the section « Global WP Cache Setup »
below for details.
Note that this cache is meant to be global, including for the different merge
requests. Thus, when working on a new merge request for WP, **do not** create a
branch (and MR) on the WP-cache repository: just push the new cache entries into
the global cache using `make wp-qualif-push`.
# Qualified Test Results
To be accepted by Frama-CI, tests in « qualif » configuration must be easily
reproducible on any platform. This is checked by running WP with flag
`-wp-msg-key shell` which is set by the default in the qualif test
configuration. Hence, a qualified test result only contains proof status that
are either:
- failed
- valid for qed or script
- cached for alt-ergo in all cases
- valid, unknown or stepout for native Alt-Ergo
- valid or unknown for (native) Coq
This excludes any timeout with native Alt-Ergo, which must be turned into some
reproducible stepout by setting `-wp-steps` and `-wp-timeout` options
accordingly. Please choose a step limit that makes large enough to ensure the
goal is provable, but small enough to make alt-ergo decide quickly.
# Global WP Cache Setup (for wp-qualif)
All prover results for test configuration `qualif` shall be cached in a dedicate
GitLab repo. This considerally speed-up the process of running those tests,
from hours downto minutes.
To ease the management of cache entries accross merge requests,
_all_ cache entries shall be merged into the _same_ master branch of a global
repository, even if they come from _different_ Frama-C branches.
This strategy prevents merge conflicts related to different cache
entries and simplifies the review of MR, especially those modifying the VC
generation process. The gitLab Frama-CI continuous integration system is aware of
this strategy and always use the global cache.
By default, the WP makefile will clone a local copy of the wp-cache in `../wp-cache`
but you can choose another place with the following commands:
$ git clone git@git.frama-c.com:frama-c/wp-cache.git <your-cache>
$ export WP_QUALIF_CACHE=<absolute-path-to-your-cache>
The WP makefile uses `WP_QUALIF_CACHE` environment variable to know where your
local copy of cache has been installed. You shall put it in your global shell
environment. To run individual tests, you may now use:
$ export FRAMAC_WP_CACHE=update
$ export FRAMAC_WP_CACHEDIR=$WP_QUALIF_CACHE
$ ./bin/ptests.opt src/plugins/wp/tests/xxx/yyy.i -config qualif [-show|-update]
An utility script is provided to export the necessary environment variables
(dont forget the `.` to execute the script in the current shell environment):
$ . bin/wp_qualif.sh
As mentionned above, it is _not_ recommanded to globally set the
`FRAMAC_WP_XXX` variables in your default shell environment, because WP will
use it by default and would merge any new cache entry there, even those
non-related to the « qualif » test suite. For this reason,
it is _highly_ recommended to use `WP_QUALIF_CACHE` globally
and `FRAMAC_WP_CACHEDIR` locally.
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