summaryrefslogtreecommitdiff
path: root/runtime/common_runtime_test.cc
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2016-03-23 06:42:05 +0000
committer Nicolas Geoffray <ngeoffray@google.com> 2016-03-23 06:42:05 +0000
commit845e5064580bd37ad5014f7aa0d078be7265464d (patch)
tree1e621756ba6a1fd345f2fb468eed88cdc81886e7 /runtime/common_runtime_test.cc
parenta62d2f04a6ecf804f8a78e722a6ca8ccb2dfa931 (diff)
Revert "Use compiler filter to determine oat file status."
Bots are red. Tentative reverting as this is likely the offender. Bug: 27689078 This reverts commit a62d2f04a6ecf804f8a78e722a6ca8ccb2dfa931. Change-Id: I3ec6947a5a4be878ff81f26f17dc36a209734e2a
Diffstat (limited to 'runtime/common_runtime_test.cc')
-rw-r--r--runtime/common_runtime_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/common_runtime_test.cc b/runtime/common_runtime_test.cc
index f58af5a8da..729957f318 100644
--- a/runtime/common_runtime_test.cc
+++ b/runtime/common_runtime_test.cc
@@ -72,7 +72,7 @@ ScratchFile::ScratchFile() {
filename_ = getenv("ANDROID_DATA");
filename_ += "/TmpFile-XXXXXX";
int fd = mkstemp(&filename_[0]);
- CHECK_NE(-1, fd) << strerror(errno) << " for " << filename_;
+ CHECK_NE(-1, fd);
file_.reset(new File(fd, GetFilename(), true));
}