Lalit Maganti | 3dc757b | 2018-01-09 16:48:04 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2018 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Hector Dearman | e1e56b6 | 2018-02-21 19:11:58 +0000 | [diff] [blame] | 17 | #include "perfetto/protozero/message_handle.h" |
Lalit Maganti | 3dc757b | 2018-01-09 16:48:04 +0000 | [diff] [blame] | 18 | |
Primiano Tucci | acb6ca3 | 2020-08-19 13:27:52 +0200 | [diff] [blame] | 19 | #include "perfetto/protozero/root_message.h" |
Primiano Tucci | 919ca1e | 2019-08-21 20:26:58 +0200 | [diff] [blame] | 20 | #include "test/gtest_and_gmock.h" |
Lalit Maganti | 3dc757b | 2018-01-09 16:48:04 +0000 | [diff] [blame] | 21 | |
| 22 | namespace protozero { |
| 23 | |
| 24 | namespace { |
| 25 | |
Hector Dearman | aaa4c19 | 2018-02-19 11:57:35 +0000 | [diff] [blame] | 26 | TEST(MessageHandleTest, MoveHandleSharedMessageDoesntFinalize) { |
Primiano Tucci | acb6ca3 | 2020-08-19 13:27:52 +0200 | [diff] [blame] | 27 | RootMessage<Message> message; |
Lalit Maganti | ff4afc0 | 2018-01-11 11:38:58 +0000 | [diff] [blame] | 28 | |
Hector Dearman | aaa4c19 | 2018-02-19 11:57:35 +0000 | [diff] [blame] | 29 | MessageHandle<Message> handle_1(&message); |
| 30 | handle_1 = MessageHandle<Message>(&message); |
Lalit Maganti | 3dc757b | 2018-01-09 16:48:04 +0000 | [diff] [blame] | 31 | ASSERT_FALSE(handle_1->is_finalized()); |
| 32 | } |
| 33 | |
| 34 | } // namespace |
| 35 | } // namespace protozero |