Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1235)

Unified Diff: client/deps/glbench/glbench.py

Issue 862004: glbench: pass the right flag so that src doesn't get pruned (Closed)
Patch Set: Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | client/deps/glbench/src/Makefile » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/deps/glbench/glbench.py
diff --git a/client/deps/glbench/glbench.py b/client/deps/glbench/glbench.py
index 501f3867fed2a391d103cfe9247fa46b1d39d1ef..21f646c22f42ad759dc00b7cf3570907cf3b9aab 100755
--- a/client/deps/glbench/glbench.py
+++ b/client/deps/glbench/glbench.py
@@ -10,12 +10,10 @@ from autotest_lib.client.bin import utils
version = 1
def setup(topdir):
- my_srcdir = os.path.join(topdir, 'src.orig')
srcdir = os.path.join(topdir, 'src')
- shutil.move(my_srcdir, srcdir)
os.chdir(srcdir)
utils.system('make')
os.chdir(topdir)
pwd = os.getcwd()
-utils.update_version(pwd + '/src', False, version, setup, pwd)
+utils.update_version(pwd + '/src', True, version, setup, pwd)
« no previous file with comments | « no previous file | client/deps/glbench/src/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698