blob: 96c86003c375d0a021bab352919ee8e27376d822 [file] [log] [blame]
Lalit Maganti3dc757b2018-01-09 16:48:04 +00001/*
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 Dearmane1e56b62018-02-21 19:11:58 +000017#include "perfetto/protozero/message_handle.h"
Lalit Maganti3dc757b2018-01-09 16:48:04 +000018
Primiano Tucciacb6ca32020-08-19 13:27:52 +020019#include "perfetto/protozero/root_message.h"
Primiano Tucci919ca1e2019-08-21 20:26:58 +020020#include "test/gtest_and_gmock.h"
Lalit Maganti3dc757b2018-01-09 16:48:04 +000021
22namespace protozero {
23
24namespace {
25
Hector Dearmanaaa4c192018-02-19 11:57:35 +000026TEST(MessageHandleTest, MoveHandleSharedMessageDoesntFinalize) {
Primiano Tucciacb6ca32020-08-19 13:27:52 +020027 RootMessage<Message> message;
Lalit Magantiff4afc02018-01-11 11:38:58 +000028
Hector Dearmanaaa4c192018-02-19 11:57:35 +000029 MessageHandle<Message> handle_1(&message);
30 handle_1 = MessageHandle<Message>(&message);
Lalit Maganti3dc757b2018-01-09 16:48:04 +000031 ASSERT_FALSE(handle_1->is_finalized());
32}
33
34} // namespace
35} // namespace protozero