@@ -4,7 +4,6 @@ if [[ $OSTYPE == "linux-gnu" && -z "$ASAN_RUN" ]]; then
44 valgrind --error-exitcode=1 --leak-check=full --show-leak-kinds=all ./build/bin/core_func_tests
55 valgrind --error-exitcode=1 --leak-check=full --show-leak-kinds=all ./build/bin/ref_func_tests
66
7- # valgrind --error-exitcode=1 --leak-check=full --show-leak-kinds=all ./build/bin/mpi_func_tests
87# valgrind --error-exitcode=1 --leak-check=full --show-leak-kinds=all ./build/bin/omp_func_tests
98 valgrind --error-exitcode=1 --leak-check=full --show-leak-kinds=all ./build/bin/seq_func_tests
109 valgrind --error-exitcode=1 --leak-check=full --show-leak-kinds=all ./build/bin/stl_func_tests
1413./build/bin/core_func_tests --gtest_also_run_disabled_tests --gtest_repeat=10 --gtest_recreate_environments_when_repeating
1514./build/bin/ref_func_tests --gtest_also_run_disabled_tests --gtest_repeat=10 --gtest_recreate_environments_when_repeating
1615
17- if [[ -z " $ASAN_RUN " ]]; then
18- if [[ $OSTYPE == " linux-gnu" ]]; then
19- mpirun --oversubscribe -np 4 ./build/bin/sample_mpi
20- mpirun --oversubscribe -np 4 ./build/bin/sample_mpi_boost
21- elif [[ $OSTYPE == " darwin" * ]]; then
22- mpirun -np 2 ./build/bin/sample_mpi
23- mpirun -np 2 ./build/bin/sample_mpi_boost
24- fi
25- fi
2616./build/bin/sample_omp
2717./build/bin/sample_stl
2818./build/bin/sample_tbb
2919
30- # if [[ $OSTYPE == "linux-gnu" ]]; then
31- # NUM_PROC=$(cat /proc/cpuinfo|grep processor|wc -l)
32- # elif [[ $OSTYPE == "darwin"* ]]; then
33- # NUM_PROC=$(sysctl -a | grep machdep.cpu | grep thread_count | cut -d ' ' -f 2)
34- # else
35- # echo "Unknown OS"
36- # NUM_PROC="1"
37- # fi
38- # echo "NUM_PROC: " $NUM_PROC
39-
40- if [[ -z " $ASAN_RUN " ]]; then
41- if [[ $OSTYPE == " linux-gnu" ]]; then
42- mpirun --oversubscribe -np 4 ./build/bin/mpi_func_tests --gtest_also_run_disabled_tests --gtest_repeat=10 --gtest_recreate_environments_when_repeating
43- elif [[ $OSTYPE == " darwin" * ]]; then
44- mpirun -np 2 ./build/bin/mpi_func_tests --gtest_also_run_disabled_tests --gtest_repeat=10 --gtest_recreate_environments_when_repeating
45- fi
46- fi
47-
4820./build/bin/omp_func_tests --gtest_also_run_disabled_tests --gtest_repeat=10 --gtest_recreate_environments_when_repeating
4921./build/bin/seq_func_tests --gtest_also_run_disabled_tests --gtest_repeat=10 --gtest_recreate_environments_when_repeating
5022./build/bin/stl_func_tests --gtest_also_run_disabled_tests --gtest_repeat=10 --gtest_recreate_environments_when_repeating
0 commit comments