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

Unified Diff: test/standalone-static-library/gyptest-standalone-static-library.py

Issue 11052013: nit followup to r1510: Add '.'s at the end of two comments. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 8 years, 2 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/standalone-static-library/gyptest-standalone-static-library.py
===================================================================
--- test/standalone-static-library/gyptest-standalone-static-library.py (revision 1510)
+++ test/standalone-static-library/gyptest-standalone-static-library.py (working copy)
@@ -18,12 +18,12 @@
test.run_gyp('mylib.gyp')
test.build('mylib.gyp', target='prog')
-# Verify that the static library is copied to PRODUCT_DIR
+# Verify that the static library is copied to PRODUCT_DIR.
built_lib = test.built_file_basename('mylib', type=test.STATIC_LIB)
path = test.built_file_path(built_lib)
test.must_exist(path)
-# Verify that the program runs properly
+# Verify that the program runs properly.
expect = 'hello from mylib.c\n'
test.run_built_executable('prog', stdout=expect)
@@ -32,4 +32,4 @@
retcode = subprocess.call(['ar', '-x', path])
assert retcode == 0
-test.pass_test()
+test.pass_test()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698