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

Unified Diff: tests/browser_startup_time/nacl.scons

Issue 7242011: Get rid of assumptions about ".nexe" extension. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 6 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
Index: tests/browser_startup_time/nacl.scons
===================================================================
--- tests/browser_startup_time/nacl.scons (revision 5756)
+++ tests/browser_startup_time/nacl.scons (working copy)
@@ -11,7 +11,7 @@
# Hope it does not change to do more than just the barebones.
# We must make a separate build though, to get a different nexe "key"
# for the env.Publish() / env.ExtractPublishedFiles() magic.
-nexe = 'browser_startup_time_%s.nexe' % env.get('TARGET_FULLARCH')
+nexe = 'browser_startup_time_%s' % env.get('TARGET_FULLARCH')
Nick Bray 2011/06/23 18:32:24 Why leave this named nexe?
pdox 2011/06/23 20:42:58 Done.
# Build object file separately to prevent crud left in the source directory.
browser_startup_obj = env.ComponentObject(
@@ -67,7 +67,7 @@
# Also check the size of this nexe.
node = env.FileSizeTest('browser_startup_size.out',
- nexe)
+ browser_startup_nexe)
env.AddNodeToTestSuite(node,
test_suites,
'run_browser_startup_size_test')

Powered by Google App Engine
This is Rietveld 408576698