match.pd: Fix indefinite recursion during exp-log transformations [PR118490]
[gcc.git] / libstdc++-v3 / testsuite / util / slow_clock.h
blob6cea0ca5a5136a8525c154ee836cc8be2ed43420
1 // -*- C++ -*-
3 // Copyright (C) 2018-2025 Free Software Foundation, Inc.
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License as
7 // published by the Free Software Foundation; either version 3, or (at
8 // your option) any later version.
10 // This library is distributed in the hope that it will be useful, but
11 // WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 // General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this library; see the file COPYING3. If not see
17 // <http://www.gnu.org/licenses/>.
20 // A clock that ticks at a third of the speed of system_clock that can be used
21 // to ensure that functions with timeouts don't erroneously return early.
23 #include <chrono>
25 namespace __gnu_test
27 struct slow_clock
29 using rep = std::chrono::system_clock::rep;
30 using period = std::chrono::system_clock::period;
31 using duration = std::chrono::system_clock::duration;
32 using time_point = std::chrono::time_point<slow_clock, duration>;
33 static constexpr bool is_steady = false;
35 static time_point now()
37 auto real = std::chrono::system_clock::now();
38 return time_point{real.time_since_epoch() / 3};