tisonkun commented on issue #10: URL: https://github.com/apache/datasketches-rust/issues/10#issuecomment-3662868794
For Java, the comand is: ```shell mvn test -P generate-java-files cp serialization_test_data/java_generated_files/*.sk java ``` Logics are grouped by `generate_java_files` test group. For C++, the command is: ```shell # Configure C++ build pushd build cmake .. -DGENERATE=true popd # Build C++ unit tests cmake --build build --config Release # Run C++ tests cmake --build build --config Release --target test # Make dir mkdir -p serialization_test_data/cpp_generated_files # Copy files cp cpp/build/*/test/*_cpp.sk serialization_test_data/cpp_generated_files ``` -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
