diff options
| author | Théo Zimmermann | 2018-10-11 17:45:58 +0200 |
|---|---|---|
| committer | Théo Zimmermann | 2018-10-11 17:45:58 +0200 |
| commit | 132343514c811e9791d8b5f31de5be8906fab66c (patch) | |
| tree | af65a587474338e6d6c378517bee8a14096af3e7 /test-suite/misc | |
| parent | 868d5cd983318bff00292329a3920c3b65eb3ada (diff) | |
| parent | 9e39d88ffb5829a9e2c82fbf54c0765a819b3e5e (diff) | |
Merge PR #8566: [dune] [test-suite] Support for running the test suite with Dune.
Diffstat (limited to 'test-suite/misc')
| -rwxr-xr-x | test-suite/misc/universes/build_all_stdlib.sh | 4 | ||||
| -rw-r--r-- | test-suite/misc/universes/dune | 8 |
2 files changed, 12 insertions, 0 deletions
diff --git a/test-suite/misc/universes/build_all_stdlib.sh b/test-suite/misc/universes/build_all_stdlib.sh new file mode 100755 index 0000000000..2d2e6f863b --- /dev/null +++ b/test-suite/misc/universes/build_all_stdlib.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +echo "Require $(find ../../../theories ../../../plugins -type f -name "*.v" | \ + sed 's/^.*\/theories\///' | sed 's/^.*\/plugins\///' | sed 's/\.v$//' | sed 's/\//./g') ." diff --git a/test-suite/misc/universes/dune b/test-suite/misc/universes/dune new file mode 100644 index 0000000000..58bba300d2 --- /dev/null +++ b/test-suite/misc/universes/dune @@ -0,0 +1,8 @@ +(rule + (targets all_stdlib.v) + (deps + (source_tree ../../../theories) + (source_tree ../../../plugins)) + (action + (with-outputs-to all_stdlib.v + (run ./build_all_stdlib.sh)))) |
