- d5a5960a133967e4af02836d304884cd6cbd6e46 Adjusting time tests for flakiness by Gennadiy Civil <misterg@google.com> - ccb8535fdc92c3c99bfa2795e75d3fbdcb134571 Internal-only tweak. by Jorg Brown <jorg@google.com> - 4c03dd9e54bd4645e7e7a8dfb3c590f5b0654884 Fix comment on some C++11 type traits backport. by Xiaoyi Zhang <zhangxy@google.com> - 43cd12d2304464163e33ae932fbb842a869213dd Allow intrinsic int128 to be set for __ppc64__ targets. by Abseil Team <absl-team@google.com> - 789e9c13de67ef3c7ba09c765c3484621897b6bb Update README.md description of 'types' library to be con... by Abseil Team <absl-team@google.com> - 8be10d7683c90b85244ddc67360a7ca2dfffdf01 Update comment on move constructors' noexcept specificati... by Xiaoyi Zhang <zhangxy@google.com> GitOrigin-RevId: d5a5960a133967e4af02836d304884cd6cbd6e46 Change-Id: I743efee47b9e65f46a44d9ab80ccd62cfd0c1301
		
			
				
	
	
		
			70 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// Copyright 2017 The Abseil Authors.
 | 
						|
//
 | 
						|
// Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
// you may not use this file except in compliance with the License.
 | 
						|
// You may obtain a copy of the License at
 | 
						|
//
 | 
						|
//      http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
//
 | 
						|
// Unless required by applicable law or agreed to in writing, software
 | 
						|
// distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
// See the License for the specific language governing permissions and
 | 
						|
// limitations under the License.
 | 
						|
 | 
						|
#include "absl/time/clock.h"
 | 
						|
 | 
						|
#include "absl/base/config.h"
 | 
						|
#if defined(ABSL_HAVE_ALARM)
 | 
						|
#include <signal.h>
 | 
						|
#include <unistd.h>
 | 
						|
#elif defined(__linux__) || defined(__APPLE__)
 | 
						|
#error all known Linux and Apple targets have alarm
 | 
						|
#endif
 | 
						|
 | 
						|
#include "gtest/gtest.h"
 | 
						|
#include "absl/time/time.h"
 | 
						|
 | 
						|
namespace {
 | 
						|
 | 
						|
TEST(Time, Now) {
 | 
						|
  const absl::Time before = absl::FromUnixNanos(absl::GetCurrentTimeNanos());
 | 
						|
  const absl::Time now = absl::Now();
 | 
						|
  const absl::Time after = absl::FromUnixNanos(absl::GetCurrentTimeNanos());
 | 
						|
  EXPECT_GE(now, before);
 | 
						|
  EXPECT_GE(after, now);
 | 
						|
}
 | 
						|
 | 
						|
TEST(SleepForTest, BasicSanity) {
 | 
						|
  absl::Duration sleep_time = absl::Milliseconds(2500);
 | 
						|
  absl::Time start = absl::Now();
 | 
						|
  absl::SleepFor(sleep_time);
 | 
						|
  absl::Time end = absl::Now();
 | 
						|
  EXPECT_LE(sleep_time - absl::Milliseconds(100), end - start);
 | 
						|
  EXPECT_GE(sleep_time + absl::Milliseconds(200), end - start);
 | 
						|
}
 | 
						|
 | 
						|
#ifdef ABSL_HAVE_ALARM
 | 
						|
// Helper for test SleepFor.
 | 
						|
bool alarm_handler_invoked = false;
 | 
						|
void AlarmHandler(int signo) {
 | 
						|
  ASSERT_EQ(signo, SIGALRM);
 | 
						|
  alarm_handler_invoked = true;
 | 
						|
}
 | 
						|
 | 
						|
TEST(SleepForTest, AlarmSupport) {
 | 
						|
  alarm_handler_invoked = false;
 | 
						|
  sig_t old_alarm = signal(SIGALRM, AlarmHandler);
 | 
						|
  alarm(2);
 | 
						|
  absl::Duration sleep_time = absl::Milliseconds(3500);
 | 
						|
  absl::Time start = absl::Now();
 | 
						|
  absl::SleepFor(sleep_time);
 | 
						|
  absl::Time end = absl::Now();
 | 
						|
  EXPECT_TRUE(alarm_handler_invoked);
 | 
						|
  EXPECT_LE(sleep_time - absl::Milliseconds(100), end - start);
 | 
						|
  EXPECT_GE(sleep_time + absl::Milliseconds(200), end - start);
 | 
						|
  signal(SIGALRM, old_alarm);
 | 
						|
}
 | 
						|
#endif  // ABSL_HAVE_ALARM
 | 
						|
 | 
						|
}  // namespace
 |