diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-02-22 15:47:50 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-02-22 15:47:50 +0100 |
| commit | 7f675cce052a057b756011d79453819faa80c870 (patch) | |
| tree | 312a084aa37dc6f3ffafd07aa0923ab2e8187e32 /src | |
| parent | b5af8192d0cd681513bf4cdd1666624de33f4dec (diff) | |
| download | allocbench-7f675cce052a057b756011d79453819faa80c870.tar.gz allocbench-7f675cce052a057b756011d79453819faa80c870.zip | |
be more verbose if requirement was not found
Diffstat (limited to 'src')
| -rw-r--r-- | src/benchmark.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/benchmark.py b/src/benchmark.py index 87ec8c2..c01a41a 100644 --- a/src/benchmark.py +++ b/src/benchmark.py @@ -93,6 +93,7 @@ class Benchmark (object): # Search for file if fpath: if not is_exe(r): + print("requirement:", r, "not found") return False # Search in PATH else: @@ -103,6 +104,7 @@ class Benchmark (object): found = True if not found: + print("requirement:", r, "not found") return False return True |
