diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2018-07-20 16:20:17 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2018-07-20 16:20:17 +0200 |
| commit | c5cc4b275fd4c8598bbce38e083479741ec68cbd (patch) | |
| tree | 3bd3e43a840bba994d823a28745bf884faa3900b /bench_loop.py | |
| parent | f1f2b7ebb57d1d5a985cbded13ac39f0388a1eef (diff) | |
| download | allocbench-c5cc4b275fd4c8598bbce38e083479741ec68cbd.tar.gz allocbench-c5cc4b275fd4c8598bbce38e083479741ec68cbd.zip | |
fix error handling for failing LD_PRELOAD
Diffstat (limited to 'bench_loop.py')
| -rw-r--r-- | bench_loop.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bench_loop.py b/bench_loop.py index f5606c6..e5de2b9 100644 --- a/bench_loop.py +++ b/bench_loop.py @@ -83,7 +83,7 @@ class Benchmark_Loop( Benchmark ): print(p.stdout) return False - if "ERROR: ld.so" in p.stderr: + if "ERROR: ld.so" in output: print("\nPreloading of", t[1], "failed for", tname, ".\n Aborting Benchmark.") return False |
