summaryrefslogtreecommitdiff
path: root/decompressing_file_writer_unittest.cc
diff options
context:
space:
mode:
authorAndrew de los Reyes <adlr@chromium.org>2010-04-15 14:02:17 -0700
committerAndrew de los Reyes <adlr@chromium.org>2010-04-15 14:02:17 -0700
commit08c4e27baaa7b40732b99642e1f21bf889d022ef (patch)
tree816583a62961b5caa1f1e13ba74e88ff070cf2c6 /decompressing_file_writer_unittest.cc
parentb10320d4f76a2d263566f6eed471921382fae800 (diff)
update engine: 32- and 64-bit compile
Review URL: http://codereview.chromium.org/1599029
Diffstat (limited to 'decompressing_file_writer_unittest.cc')
-rw-r--r--decompressing_file_writer_unittest.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/decompressing_file_writer_unittest.cc b/decompressing_file_writer_unittest.cc
index 1d689e7c..c1666dbc 100644
--- a/decompressing_file_writer_unittest.cc
+++ b/decompressing_file_writer_unittest.cc
@@ -75,7 +75,8 @@ TEST(GzipDecompressingFileWriterTest, LargeTest) {
uncompressed_file.Close();
// compress the file
- system((string("cat ") + kPath + " | gzip > " + kPathgz).c_str());
+ EXPECT_EQ(0,
+ system((string("cat ") + kPath + " | gzip > " + kPathgz).c_str()));
// Now read the compressed file and put it into a DecompressingFileWriter
MockFileWriter mock_file_writer;