MarcoFalke commented on pull request #11139:
URL: https://github.com/apache/arrow/pull/11139#issuecomment-918070532
Thanks, pushed new commit to fix the appveyor errors:
```
16/27 Test #17: arrow-io-compressed-test .........***Failed 0.03 sec
Running main() from
C:\projects\arrow\cpp\build-debug\googletest_ep-prefix\src\googletest_ep\googletest\src\gtest_main.cc
[==========] Running 2 tests from 1 test suite.
[----------] Global test environment set-up.
[----------] 2 tests from GoogleTestVerification
[ RUN ]
GoogleTestVerification.UninstantiatedParameterizedTestSuite<CompressedInputStreamTest>
C:/projects/arrow/cpp/src/arrow/io/compressed_test.cc(170): error:
Parameterized test suite CompressedInputStreamTest is defined via TEST_P, but
never instantiated. None of the test cases will run. Either no
INSTANTIATE_TEST_SUITE_P is provided or the only ones provided expand to
nothing.
Ideally, TEST_P definitions should only ever be included as part of binaries
that intend to use them. (As opposed to, for example, being placed in a library
that may be linked in to get other utilities.)
To suppress this error for this test suite, insert the following line (in a
non-header) in the namespace it is defined in:
GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(CompressedInputStreamTest);
[ FAILED ]
GoogleTestVerification.UninstantiatedParameterizedTestSuite<CompressedInputStreamTest>
(0 ms)
[ RUN ]
GoogleTestVerification.UninstantiatedParameterizedTestSuite<CompressedOutputStreamTest>
C:/projects/arrow/cpp/src/arrow/io/compressed_test.cc(239): error:
Parameterized test suite CompressedOutputStreamTest is defined via TEST_P, but
never instantiated. None of the test cases will run. Either no
INSTANTIATE_TEST_SUITE_P is provided or the only ones provided expand to
nothing.
Ideally, TEST_P definitions should only ever be included as part of binaries
that intend to use them. (As opposed to, for example, being placed in a library
that may be linked in to get other utilities.)
To suppress this error for this test suite, insert the following line (in a
non-header) in the namespace it is defined in:
GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(CompressedOutputStreamTest);
[ FAILED ]
GoogleTestVerification.UninstantiatedParameterizedTestSuite<CompressedOutputStreamTest>
(0 ms)
[----------] 2 tests from GoogleTestVerification (0 ms total)
[----------] Global test environment tear-down
[==========] 2 tests from 1 test suite ran. (1 ms total)
[ PASSED ] 0 tests.
[ FAILED ] 2 tests, listed below:
[ FAILED ]
GoogleTestVerification.UninstantiatedParameterizedTestSuite<CompressedInputStreamTest>
[ FAILED ]
GoogleTestVerification.UninstantiatedParameterizedTestSuite<CompressedOutputStreamTest>
2 FAILED TESTS
```
```
[ RUN ]
GoogleTestVerification.UninstantiatedParameterizedTestSuite<CodecTest>
C:/projects/arrow/cpp/src/arrow/util/compression_test.cc(349): error:
Parameterized test suite CodecTest is defined via TEST_P, but never
instantiated. None of the test cases will run. Either no
INSTANTIATE_TEST_SUITE_P is provided or the only ones provided expand to
nothing.
Ideally, TEST_P definitions should only ever be included as part of binaries
that intend to use them. (As opposed to, for example, being placed in a library
that may be linked in to get other utilities.)
To suppress this error for this test suite, insert the following line (in a
non-header) in the namespace it is defined in:
GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(CodecTest);
[ FAILED ]
GoogleTestVerification.UninstantiatedParameterizedTestSuite<CodecTest> (0 ms)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]