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

Unified Diff: tests/manifest_file/srpc_manifest_file_test.html

Issue 7745047: Enable browser tests with glibc. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 4 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 | « tests/manifest_file/pm_pre_init_manifest_file_test.html ('k') | tests/manifest_file/test_file.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/manifest_file/srpc_manifest_file_test.html
===================================================================
--- tests/manifest_file/srpc_manifest_file_test.html (revision 6583)
+++ tests/manifest_file/srpc_manifest_file_test.html (working copy)
@@ -17,8 +17,11 @@
server.namedump());
})
tester.addTest('manifest_test', function() {
- assertEqual('Manifest Contents:\nnmf says hello world\n',
- server.manifest_test());
+ var str = server.manifest_test();
+ assert(str.indexOf('Manifest Contents:\n') != -1,
+ '"Manifest Contents" not found in "' + str + '"')
+ assert(str.indexOf('nmf says hello world\n') != -1,
+ '"nmf says hello world" not found in "' + str + '"')
})
}
« no previous file with comments | « tests/manifest_file/pm_pre_init_manifest_file_test.html ('k') | tests/manifest_file/test_file.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698