Skip to content

Commit

Permalink
Release v2.2.0
Browse files Browse the repository at this point in the history
This version is based on Valgrind-3.15.0.

### Added

- [EXPERIMENTAL] MCA back-ends
  - use with valgrind option `--backend=mcaquad`
  - deactivate support for MCA back-ends with configure switch `--enable-verrou-quad=no`

- [EXPERIMENTAL] code coverage generation (`--trace=FILENAME`)

- Generate the list of cancellations (`--cc-gen-source`)

### Changed

- Two scripts `verrou_dd_line` and `verrou_dd_sym` replace
  `verrou_dd`.

- Bug fix related to the random generator.

- Bug fix: use the PID to generate the search space name.  This allows
  using Delta-Debugging techniques with MPI programs.

- Bug fix: correctly handle unnamed objects and source file lines.

- Bug fix: allow gdb integration. (fixes gh-24)
  • Loading branch information
lathuili committed Jan 8, 2020
1 parent b658103 commit 02d5d55
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 5 deletions.
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,33 @@
# Change Log


## [UNRELEASED]
## v2.2.0 - 2020-01-08

This version is based on Valgrind-3.15.0.

### Added

- [EXPERIMENTAL] MCA back-ends
- use with valgrind option `--backend=mcaquad`
- deactivate support for MCA back-ends with configure switch `--enable-verrou-quad=no`

- [EXPERIMENTAL] code coverage generation (`--trace=FILENAME`)

- Generate the list of cancellations (`--cc-gen-source`)

### Changed

- Two scripts `verrou_dd_line` and `verrou_dd_sym` replace
`verrou_dd`.

- Bug fix related to the random generator.

- Bug fix: use the PID to generate the search space name. This allows
using Delta-Debugging techniques with MPI programs.

- Bug fix: correctly handle unnamed objects and source file lines.

- Bug fix: allow gdb integration. (fixes gh-24)

---

Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,18 @@ are likely to be responsible for Floating-Point-related instabilities.
The documentation for Verrou is available as a dedicated [chapter in the
Valgrind manual](http://edf-hpc.github.io/verrou/vr-manual.html).

**NB:** This is released version 2.2.0 of Verrou, based on Valgrind
v3.15.0. The development version of Verrou can always be found in
the [`master`](https://github.com/edf-hpc/verrou/) branch. For other
versions, please consult the list of
[releases](https://github.com/edf-hpc/verrou/releases).

## Installation

### Get the sources

The preferred way to get Verrou sources is to download the latest *stable*
version: [v2.1.0](https://github.com/edf-hpc/verrou/releases/latest).
version: [v2.2.0](https://github.com/edf-hpc/verrou/releases/latest).
Older versions are available in the [releases](https://github.com/edf-hpc/verrou/releases)
page. After downloading one of the released versions, skip to the "Configure
and build" section below.
Expand Down
2 changes: 1 addition & 1 deletion release.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Notes about the release process

```
VERSION=2.1.0
VERSION=2.2.0
```

## Update the valgrind patch
Expand Down
4 changes: 2 additions & 2 deletions valgrind.diff
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ index f8c798bf3..4eb86290d 100755

# Process this file with autoconf to produce a configure script.
-AC_INIT([Valgrind],[3.15.0],[[email protected]])
+AC_INIT([Valgrind],[3.15.0+verrou-dev],[[email protected]])
+AC_INIT([Valgrind],[3.15.0+verrou-2.2.0],[[email protected]])
AC_CONFIG_SRCDIR(coregrind/m_main.c)
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([foreign dist-bzip2 subdir-objects])
Expand Down Expand Up @@ -168,7 +168,7 @@ index fc5629db4..6a3de186a 100644
<!-- valgrind release + version stuff -->
<!ENTITY rel-type "Release">
-<!ENTITY rel-version "3.15.0">
+<!ENTITY rel-version "3.15.0+verrou-dev">
+<!ENTITY rel-version "3.15.0+verrou-2.2.0">
<!ENTITY rel-date "12 April 2019">

<!-- where the docs are installed -->

0 comments on commit 02d5d55

Please sign in to comment.