diff options
author | Eric B Munson <ebmunson@us.ibm.com> | 2009-12-09 11:25:27 +0000 |
---|---|---|
committer | Eric B Munson <ebmunson@us.ibm.com> | 2009-12-09 11:32:21 +0000 |
commit | bb1911e046c144fe4a56de51fdf0f4e367c2f588 (patch) | |
tree | e0a87e23f357af08d4b46c4b12f6e4e2e3bbe720 /tests | |
parent | 3b6084385368210ec6c09140664129f700ef1f65 (diff) | |
download | libhugetlbfs-bb1911e046c144fe4a56de51fdf0f4e367c2f588.tar.gz |
Fix target binary in reserve tests
These three wrappers all pointed at the quota test. This patch
updates the wrappers to run the appropriate tests.
Signed-off-by: Eric B Munson <ebmunson@us.ibm.com>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/fadvise_reserve.sh | 2 | ||||
-rwxr-xr-x | tests/madvise_reserve.sh | 2 | ||||
-rwxr-xr-x | tests/readahead_reserve.sh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/fadvise_reserve.sh b/tests/fadvise_reserve.sh index f24944c..74496ec 100755 --- a/tests/fadvise_reserve.sh +++ b/tests/fadvise_reserve.sh @@ -9,6 +9,6 @@ if [ $? -eq 1 ]; then exit $RC_FAIL else EXP_RC=$RC_PASS - exec_and_check $EXP_RC quota "$@" + exec_and_check $EXP_RC fadvise_reserve "$@" fi diff --git a/tests/madvise_reserve.sh b/tests/madvise_reserve.sh index 4a88ade..cfe582d 100755 --- a/tests/madvise_reserve.sh +++ b/tests/madvise_reserve.sh @@ -9,6 +9,6 @@ if [ $? -eq 1 ]; then exit $RC_FAIL else EXP_RC=$RC_PASS - exec_and_check $EXP_RC quota "$@" + exec_and_check $EXP_RC madvise_reserve "$@" fi diff --git a/tests/readahead_reserve.sh b/tests/readahead_reserve.sh index 831cceb..5ab7400 100755 --- a/tests/readahead_reserve.sh +++ b/tests/readahead_reserve.sh @@ -9,6 +9,6 @@ if [ $? -eq 1 ]; then exit $RC_FAIL else EXP_RC=$RC_PASS - exec_and_check $EXP_RC quota "$@" + exec_and_check $EXP_RC readahead_reserve "$@" fi |