-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: run librbd valgrind test during 'make check'
Fixes: ceph#11372 Signed-off-by: Jason Dillaman <[email protected]>
- Loading branch information
Jason Dillaman
authored and
jdillaman
committed
Apr 30, 2015
1 parent
8d87bdf
commit 5534faa
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash -ex | ||
|
||
# this should be run from the src directory in the ceph.git | ||
|
||
CEPH_SRC=$(pwd) | ||
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$CEPH_SRC/.libs" | ||
PATH="$CEPH_SRC:$PATH" | ||
|
||
RBD_FEATURES=13 valgrind --tool=memcheck --leak-check=full --suppressions=valgrind.supp unittest_librbd | ||
|
||
echo OK |