Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Two README changes #507

Merged
merged 3 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,10 @@ or a particular branch of a particular fork:
COMPILER_REF: 'refs/heads/test-me'
```

Since [ocaml/ocaml#13458](https://github.com/ocaml/ocaml/pull/13458)
the test suite can be triggered on an ocaml/ocaml PR (or on a fork of it)
by adding the `run-multicoretests` label.


A Linearization Tester
======================
Expand Down
14 changes: 12 additions & 2 deletions src/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Current (experimental) PBTs of multicore
========================================
Current PBTs of OCaml 5
=======================

Tests utilizing the parallel STM.ml capability:

Expand Down Expand Up @@ -30,6 +30,16 @@ Tests utilizing the parallel STM.ml capability:
- [floatarray/stm_tests.ml](floatarray/stm_tests.ml) contains sequential and
parallel tests of the `Float.Array` module

- [gc](gc) contains sequential and parallel tests of the `Gc` module
- [gc/stm_tests_seq.ml](gc/stm_tests_seq.ml),
[gc/stm_tests_seq_child.ml](gc/stm_tests_seq_child.ml), and
[gc/stm_tests_par.ml](gc/stm_tests_par.ml) contains a version
with explicit calls to `Gc` functions, and
- [gc/stm_tests_impl_seq.ml](gc/stm_tests_impl_seq.ml),
[gc/stm_tests_impl_seq_child.ml](gc/stm_tests_impl_seq_child.ml), and
[gc/stm_tests_impl_par.ml](gc/stm_tests_impl_par.ml) contains a version
with implicit calls to the `Gc`

- [hashtbl/stm_tests.ml](hashtbl/stm_tests.ml) contains sequential and
parallel tests of the `Hashtbl` module

Expand Down
Loading