mirror of
https://github.com/wassname/ray.git
synced 2026-08-05 13:21:03 +08:00
* switch to CMake completely ... * cleanup * Run C tests, update installation instructions.
11 lines
327 B
Bash
11 lines
327 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Cause the script to exit if a single command fails.
|
|
set -e
|
|
|
|
./src/plasma/plasma_store -s /tmp/plasma_store_socket_1 -m 0 &
|
|
sleep 1
|
|
valgrind --leak-check=full --error-exitcode=1 ./src/plasma/manager_tests
|
|
killall plasma_store
|
|
valgrind --leak-check=full --error-exitcode=1 ./src/plasma/serialization_tests
|