YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/util/sync_point-test.cc
Line
Count
Source
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
//
18
// The following only applies to changes made to this file as part of YugaByte development.
19
//
20
// Portions Copyright (c) YugaByte, Inc.
21
//
22
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
23
// in compliance with the License.  You may obtain a copy of the License at
24
//
25
// http://www.apache.org/licenses/LICENSE-2.0
26
//
27
// Unless required by applicable law or agreed to in writing, software distributed under the License
28
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
29
// or implied.  See the License for the specific language governing permissions and limitations
30
// under the License.
31
//
32
33
#include <atomic>
34
#include <string>
35
36
#include <gtest/gtest.h>
37
38
#include "yb/gutil/ref_counted.h"
39
40
#include "yb/util/monotime.h"
41
#include "yb/util/result.h"
42
#include "yb/util/sync_point.h"
43
#include "yb/util/test_macros.h"
44
#include "yb/util/thread.h"
45
46
using std::string;
47
using std::vector;
48
49
namespace yb {
50
51
#ifndef NDEBUG
52
1
static void RunThread(bool *var) {
53
1
  *var = true;
54
1
  TEST_SYNC_POINT("first");
55
1
}
56
#endif
57
58
1
TEST(SyncPointTest, TestSyncPoint) {
59
1
#ifndef NDEBUG
60
  // Set up a sync point "second" that depends on "first".
61
1
  vector<SyncPoint::Dependency> dependencies;
62
1
  dependencies.push_back(SyncPoint::Dependency("first", "second"));
63
1
  SyncPoint::GetInstance()->LoadDependency(dependencies);
64
1
  SyncPoint::GetInstance()->EnableProcessing();
65
66
  // Kick off a thread that'll process "first", but not before
67
  // setting 'var' to true, which unblocks the main thread.
68
1
  scoped_refptr<Thread> thread;
69
1
  bool var = false;
70
1
  ASSERT_OK(yb::Thread::Create("test", "test",
71
1
                                        &RunThread, &var, &thread));
72
73
  // Blocked on RunThread to process "first".
74
1
  TEST_SYNC_POINT("second");
75
1
  ASSERT_TRUE(var);
76
77
1
  thread->Join();
78
#else
79
  LOG(INFO) << "Test skipped in release mode.";
80
#endif // NDEBUG
81
1
}
82
83
} // namespace yb