Skip to content

Commit 7c9d167

Browse files
committed
Made Performance tests to be skipped in debug builds
1 parent 484aa7a commit 7c9d167

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ut/performance_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class ColumnPerformanceTest : public ::testing::Test {
8484
TYPED_TEST_SUITE_P(ColumnPerformanceTest);
8585

8686
// Turns out this is the easiest way to skip test with current version of gtest
87-
#ifndef NDEBUG
87+
#ifdef NDEBUG
8888
# define SKIP_IN_DEBUG_BUILDS() (void)(0)
8989
#else
9090
# define SKIP_IN_DEBUG_BUILDS() GTEST_SKIP_("Test skipped for DEBUG build...")

0 commit comments

Comments
 (0)