From 3276167b8564657af8d5a41853656eea23c9a4ad Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sun, 19 Feb 2012 09:37:35 +0000 Subject: [PATCH] file access log is not implemented in trunk. No point in trying to use it in that version of run_benchmarks.py --- examples/run_benchmarks.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/examples/run_benchmarks.py b/examples/run_benchmarks.py index 756ec730c..b8122ef41 100644 --- a/examples/run_benchmarks.py +++ b/examples/run_benchmarks.py @@ -70,7 +70,7 @@ def build_stage_dirs(): return ret # make sure we have all the binaries available -binaries = ['client_test', 'connection_tester', 'fragmentation_test', 'parse_access_log'] +binaries = ['client_test', 'connection_tester', 'fragmentation_test'] for b in build_stage_dirs(): for i in binaries: p = os.path.join(b, i) @@ -199,14 +199,12 @@ def run_test(config): shutil.copy('fragmentation.log', 'session_stats/') shutil.copy('fragmentation.png', 'session_stats/') shutil.copy('fragmentation.gnuplot', 'session_stats/') - shutil.copy('file_access.log', 'session_stats/') os.chdir('session_stats') # parse session stats print 'parsing session log' os.system('python ../../parse_session_stats.py *.0000.log') - os.system('../stage_%s/parse_access_log file_access.log %s' % (config['build'], os.path.join('..', config['save-path'], 'stress_test_file'))) os.chdir('..')