diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-09-11 17:59:23 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-09-11 17:59:23 +0200 |
| commit | 84374b4b4e41c4bb7896092c10098b5e6b5f68c1 (patch) | |
| tree | e406322fb73570d5e1fbf5104326a8a8be2d2b0f /src/benchmark.py | |
| parent | c36a2b00e6a487f988a7286ccb9c8968a937f30c (diff) | |
| download | allocbench-84374b4b4e41c4bb7896092c10098b5e6b5f68c1.tar.gz allocbench-84374b4b4e41c4bb7896092c10098b5e6b5f68c1.zip | |
explicitly collect binary versions
There is no generic way to retrieve the version of a binary.
Not everyone followes GNU cli guidelines and supports "--version".
The larson benchmark for example reads input from stdin when
started with "larson --version" blocking the Benchmark.prepare() call.
Diffstat (limited to 'src/benchmark.py')
| -rw-r--r-- | src/benchmark.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/benchmark.py b/src/benchmark.py index f9b4dfd..df31068 100644 --- a/src/benchmark.py +++ b/src/benchmark.py @@ -193,7 +193,6 @@ class Benchmark: exe = src.util.find_cmd(r) if exe is not None: self.results["facts"]["libcs"][r] = src.facter.libc_ver(executable=exe) - self.results["facts"]["versions"][r] = src.facter.exec_ver(exe) else: raise Exception("Requirement: {} not found".format(r)) |
