apache / incubator-graphar

An open source, standard data file format for graph data storage and retrieval.
https://graphar.apache.org/
Apache License 2.0
217 stars 46 forks source link

fix(c++): do not run test when compile the library #612

Closed acezen closed 4 weeks ago

acezen commented 4 weeks ago

Describe the bug, including details regarding any error messages, version, and platform.

the catch_discover_tests would make that test run in the compilation phase which is not the expectation. In the compilation phase, just build the test cases.

Component(s)

C++

acezen commented 4 weeks ago

the [catch_discover_tests]( would not make test run in the compilation phase, need to double check this problem.