We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42c7616 commit d31d2bfCopy full SHA for d31d2bf
CHANGELOG.md
@@ -1,5 +1,13 @@
1
# BenchExec Changelog
2
3
+## BenchExec 0.5
4
+
5
+- Allow to redirect stdin of the benchmarked tool in runexec / RunExecutor
6
+- Fix bug in measurement of CPU time
7
+ (only occurred in special cases and produced a wrong value below 0.5s)
8
+- Improve utility command for checking cgroups to work around a problem
9
+ with cgrulesngd not handlings threads correctly.
10
11
## BenchExec 0.4
12
13
- Support for integrating SMTLib 2 compliant SMT solvers and checking the expected output.
benchexec/__init__.py
@@ -60,7 +60,7 @@
60
Variables ending with "tag" contain references to XML tag objects created by the XML parser.
61
"""
62
63
-__version__ = '0.5-dev'
+__version__ = '0.5'
64
65
class BenchExec(object):
66
0 commit comments