We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9795fb commit b81d62fCopy full SHA for b81d62f
1 file changed
modules/task/tests/task_tests.cpp
@@ -90,6 +90,9 @@ TEST(TaskTests, CheckInt32t) {
90
}
91
92
TEST(TaskTests, CheckInt32tSlow) {
93
+#ifdef __APPLE__
94
+ GTEST_SKIP() << "Skipped on macOS due to time fluctuations.";
95
+#endif
96
std::vector<int32_t> in(20, 1);
97
ppc::test::FakeSlowTask<std::vector<int32_t>, int32_t> test_task(in);
98
ASSERT_EQ(test_task.Validation(), true);
@@ -278,6 +281,9 @@ TEST(TaskTest, TaskDestructorThrowsIfEmpty) {
278
281
279
282
280
283
TEST(TaskTest, InternalTimeTestThrowsIfTimeoutExceeded) {
284
285
286
287
struct SlowTask : Task<std::vector<int32_t>, int32_t> {
288
explicit SlowTask(const std::vector<int32_t> &in) {
289
this->GetInput() = in;
0 commit comments