-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
76a37b6
commit 6b97140
Showing
32 changed files
with
836 additions
and
460 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
version = 0.26.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,44 @@ | ||
(library | ||
(name test_helpers) | ||
(modules Helpers) | ||
(libraries asllib)) | ||
(name test_helpers) | ||
(modules Helpers) | ||
(libraries asllib)) | ||
|
||
(test | ||
(name asltests) | ||
(modes native) | ||
(modules asltests) | ||
(libraries asllib test_helpers) | ||
(deps (glob_files asl/required/*.asl) asltests.ml ../libdir/stdlib.asl) | ||
(action | ||
(setenv ASL_LIBDIR %{project_root}/asllib/libdir/ | ||
(run %{test} asl/required)))) | ||
(name asltests) | ||
(modes native) | ||
(modules asltests) | ||
(libraries asllib test_helpers) | ||
(deps | ||
(glob_files asl/required/*.asl) | ||
asltests.ml | ||
../libdir/stdlib.asl) | ||
(action | ||
(setenv | ||
ASL_LIBDIR | ||
%{project_root}/asllib/libdir/ | ||
(run %{test} asl/required)))) | ||
|
||
(test | ||
(name toposort) | ||
(modes native) | ||
(enabled_if %{lib-available:qcheck}) | ||
(libraries asllib qcheck) | ||
(modules toposort)) | ||
(name toposort) | ||
(modes native) | ||
(enabled_if %{lib-available:qcheck}) | ||
(libraries asllib qcheck) | ||
(modules toposort)) | ||
|
||
(tests | ||
(names static bitvector types) | ||
(modules static bitvector types) | ||
(modes native) | ||
(deps (:standard ../libdir/stdlib.asl)) | ||
(libraries asllib test_helpers zarith) | ||
(flags (:standard -w -40-42)) | ||
(action | ||
(setenv ASL_LIBDIR %{project_root}/asllib/libdir/ | ||
(run %{test} -e)))) | ||
(names static bitvector types) | ||
(modules static bitvector types) | ||
(modes native) | ||
(deps | ||
(:standard ../libdir/stdlib.asl)) | ||
(libraries asllib test_helpers zarith) | ||
(flags | ||
(:standard -w -40-42)) | ||
(action | ||
(setenv | ||
ASL_LIBDIR | ||
%{project_root}/asllib/libdir/ | ||
(run %{test} -e)))) | ||
|
||
(cram | ||
(deps %{bin:aslref})) | ||
(deps %{bin:aslref})) |
Oops, something went wrong.