OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 #include <errno.h> | 6 #include <errno.h> |
7 #include <fcntl.h> | 7 #include <fcntl.h> |
8 | 8 |
9 #include "nacl_mounts/kernel_proxy.h" | 9 #include "nacl_io/kernel_proxy.h" |
10 #include "nacl_mounts/mount_node.h" | 10 #include "nacl_io/mount_node.h" |
11 #include "nacl_mounts/mount_node_dir.h" | 11 #include "nacl_io/mount_node_dir.h" |
12 #include "nacl_mounts/mount_node_mem.h" | 12 #include "nacl_io/mount_node_mem.h" |
13 #include "nacl_mounts/osdirent.h" | 13 #include "nacl_io/osdirent.h" |
14 | 14 |
15 #include "gtest/gtest.h" | 15 #include "gtest/gtest.h" |
16 | 16 |
17 #define NULL_NODE ((MountNode *) NULL) | 17 #define NULL_NODE ((MountNode *) NULL) |
18 | 18 |
19 static int s_AllocNum = 0; | 19 static int s_AllocNum = 0; |
20 | 20 |
21 class MockMemory : public MountNodeMem { | 21 class MockMemory : public MountNodeMem { |
22 public: | 22 public: |
23 MockMemory() : MountNodeMem(NULL) { | 23 MockMemory() : MountNodeMem(NULL) { |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 EXPECT_EQ(0, file->GetLinks()); | 181 EXPECT_EQ(0, file->GetLinks()); |
182 EXPECT_EQ(1, file->RefCount()); | 182 EXPECT_EQ(1, file->RefCount()); |
183 EXPECT_EQ(2, s_AllocNum); | 183 EXPECT_EQ(2, s_AllocNum); |
184 | 184 |
185 file->Release(); | 185 file->Release(); |
186 EXPECT_EQ(1, s_AllocNum); | 186 EXPECT_EQ(1, s_AllocNum); |
187 root->Release(); | 187 root->Release(); |
188 EXPECT_EQ(0, s_AllocNum); | 188 EXPECT_EQ(0, s_AllocNum); |
189 } | 189 } |
190 | 190 |
OLD | NEW |