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

Unified Diff: chrome/browser/nacl_host/pnacl_translation_cache_unittest.cc

Issue 24093003: Disable Store/GetLargeOnDisk tests for linux. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 3 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: chrome/browser/nacl_host/pnacl_translation_cache_unittest.cc
diff --git a/chrome/browser/nacl_host/pnacl_translation_cache_unittest.cc b/chrome/browser/nacl_host/pnacl_translation_cache_unittest.cc
index 16138fddd5c8c9c1be5e89a452e42db2902fc153..dd6d3ffb4a55c23a98c8f2b26d188d981503cc55 100644
--- a/chrome/browser/nacl_host/pnacl_translation_cache_unittest.cc
+++ b/chrome/browser/nacl_host/pnacl_translation_cache_unittest.cc
@@ -187,7 +187,11 @@ TEST_F(PnaclTranslationCacheTest, StoreSmallOnDisk) {
EXPECT_EQ(1, cache_->Size());
}
+#if defined(OS_LINUX)
+TEST_F(PnaclTranslationCacheTest, DISABLED_StoreLargeOnDisk) {
+#else
TEST_F(PnaclTranslationCacheTest, StoreLargeOnDisk) {
+#endif
// Test a value too large(?) for a single I/O operation
InitBackend(false);
const std::string large_buffer(kLargeNexeSize, 'a');
@@ -221,7 +225,11 @@ TEST_F(PnaclTranslationCacheTest, GetOneOnDisk) {
EXPECT_EQ(0, GetNexe(test_key).compare(test_store_val));
}
+#if defined(OS_LINUX)
+TEST_F(PnaclTranslationCacheTest, DISABLED_GetLargeOnDisk) {
+#else
TEST_F(PnaclTranslationCacheTest, GetLargeOnDisk) {
+#endif
InitBackend(false);
const std::string large_buffer(kLargeNexeSize, 'a');
StoreNexe(test_key, large_buffer);
« 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