| 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()
|
|
|