Skip to content

Commit 7a62178

Browse files
committed
Fix missing checks in stdlib test suite
1 parent eafed8f commit 7a62178

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ test-suite/Datatypes.mli
9797
test-suite/bug_10796.ml
9898
test-suite/bug_10796.mli
9999
test-suite/**/*.time
100+
stdlib/test-suite/**/*.time
100101

101102
# `nix build` (through flake) symlink
102103
result

stdlib/test-suite/Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -195,9 +195,12 @@ summary:
195195
$(call summary_dir, "Success tests", success); \
196196
$(call summary_dir, "Bugs tests", bugs); \
197197
$(call summary_dir, "Output tests", output); \
198+
$(call summary_dir, "Miscellaneous tests", misc); \
198199
$(call summary_dir, "Complexity tests", complexity); \
200+
$(call summary_dir, "Micromega tests", micromega); \
199201
$(call summary_dir, "Module tests", modules); \
200202
$(call summary_dir, "STM tests", stm); \
203+
$(call summary_dir, "Ltac2 tests", ltac2); \
201204
nb_success=`grep -e $(log_success) -r . -l --include="*.log" --exclude-dir=logs | wc -l`; \
202205
nb_failure=`grep -e $(log_failure) -r . -l --include="*.log" --exclude-dir=logs | wc -l`; \
203206
nb_tests=`expr $$nb_success + $$nb_failure`; \

stdlib/test-suite/micromega/bug_14054.v

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ From Stdlib.Init Require Byte.
1010
From Stdlib.Strings Require Byte.
1111
From Stdlib Require Import ZifyClasses Lia.
1212

13-
Notation byte := Stdlib.Init.Byte.byte.
13+
Notation byte := Corelib.Init.Byte.byte.
1414

1515
Module byte.
1616
Definition unsigned(b: byte): Z := Z.of_N (Byte.to_N b).

0 commit comments

Comments
 (0)