diff options
author | Dongsheng Yang <yangds.fnst@cn.fujitsu.com> | 2015-06-29 16:49:18 +0800 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2015-07-06 14:39:59 -0700 |
commit | eb3f8a53e92b250b1086b216da7049eff0bd4589 (patch) | |
tree | 871a90efee59647afbbb4b6905078002c861170d | |
parent | abcf731e041d8d977b992820c38f6e95ed63fd3b (diff) |
mtd-utils: fs-tests: pass TEST_DIR to integck in run_all.sh
Test integck requires a parameter but run_all.sh did no pass any to it.
Then:
integck: error!: test file-system was not specified (use -h for help)
Signed-off-by: Dongsheng Yang <yangds.fnst@cn.fujitsu.com>
Reviewed-by: Richard Weinberger <richard@nod.at>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
-rwxr-xr-x | tests/fs-tests/run_all.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fs-tests/run_all.sh b/tests/fs-tests/run_all.sh index 7c82921..7c82f9a 100755 --- a/tests/fs-tests/run_all.sh +++ b/tests/fs-tests/run_all.sh @@ -16,7 +16,7 @@ rm -rf ${TEST_DIR}/* rm -rf ${TEST_DIR}/* -./integrity/integck || exit 1 +./integrity/integck $TEST_DIR || exit 1 rm -rf ${TEST_DIR}/* |