mirror of
https://github.com/MariaDB/server.git
synced 2025-12-04 17:23:46 +03:00
commit dcd9379eb5707bc7514a2ff4d9127790356505cb Author: Manuel Ung <mung@fb.com> Date: Fri Jun 14 10:38:17 2019 -0700 Skip valgrind for rocksdb.force_shutdown Summary: This test does unclean shutdown, and leaks memory. Squash with: D15749084 Reviewed By: hermanlee Differential Revision: D15828957 fbshipit-source-id: 30541455d74
9 lines
240 B
Bash
Executable File
9 lines
240 B
Bash
Executable File
#!/bin/bash
|
|
|
|
COPY_LOG="${MYSQL_TMP_DIR}/myrocks_hotbackup_copy_log"
|
|
SIGNAL_FILE=${MYSQL_TMP_DIR}/myrocks_hotbackup_signal
|
|
MOVEBACK_LOG="${MYSQL_TMP_DIR}/myrocks_hotbackup_moveback_log"
|
|
rm -f $COPY_LOG
|
|
rm -f $SIGNAL_FILE
|
|
rm -f $MOVEBACK_LOG
|