File tree 3 files changed +5
-1
lines changed
3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ test-suite/Datatypes.mli
97
97
test-suite /bug_10796.ml
98
98
test-suite /bug_10796.mli
99
99
test-suite /** /* .time
100
+ stdlib /test-suite /** /* .time
100
101
101
102
# `nix build` (through flake) symlink
102
103
result
Original file line number Diff line number Diff line change @@ -195,9 +195,12 @@ summary:
195
195
$(call summary_dir, "Success tests", success) ; \
196
196
$(call summary_dir, "Bugs tests", bugs) ; \
197
197
$(call summary_dir, "Output tests", output) ; \
198
+ $(call summary_dir, "Miscellaneous tests", misc) ; \
198
199
$(call summary_dir, "Complexity tests", complexity) ; \
200
+ $(call summary_dir, "Micromega tests", micromega) ; \
199
201
$(call summary_dir, "Module tests", modules) ; \
200
202
$(call summary_dir, "STM tests", stm) ; \
203
+ $(call summary_dir, "Ltac2 tests", ltac2) ; \
201
204
nb_success=` grep -e $( log_success) -r . -l --include=" *.log" --exclude-dir=logs | wc -l` ; \
202
205
nb_failure=` grep -e $( log_failure) -r . -l --include=" *.log" --exclude-dir=logs | wc -l` ; \
203
206
nb_tests=` expr $$ nb_success + $$ nb_failure` ; \
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ From Stdlib.Init Require Byte.
10
10
From Stdlib.Strings Require Byte.
11
11
From Stdlib Require Import ZifyClasses Lia.
12
12
13
- Notation byte := Stdlib .Init.Byte.byte.
13
+ Notation byte := Corelib .Init.Byte.byte.
14
14
15
15
Module byte.
16
16
Definition unsigned(b: byte): Z := Z.of_N (Byte.to_N b).
You can’t perform that action at this time.
0 commit comments