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

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

Issue 12314014: CMake generator. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Address comments. Created 7 years, 1 month 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 | « test/sibling/gyptest-relocate.py ('k') | test/subdirectory/gyptest-subdir-all.py » ('j') | 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 1794)
+++ test/standalone-static-library/gyptest-standalone-static-library.py (working copy)
@@ -44,7 +44,8 @@
test.run_built_executable('prog', stdout=expect)
# Verify that libmylib.a contains symbols. "ar -x" fails on a 'thin' archive.
-if test.format in ('make', 'ninja') and sys.platform.startswith('linux'):
+supports_thick = ('make', 'ninja', 'cmake')
+if test.format in supports_thick and sys.platform.startswith('linux'):
retcode = subprocess.call(['ar', '-x', path])
assert retcode == 0
« no previous file with comments | « test/sibling/gyptest-relocate.py ('k') | test/subdirectory/gyptest-subdir-all.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698