diff options
author | AKASHI Takahiro <takahiro.akashi@linaro.org> | 2018-09-11 15:59:17 +0900 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2018-09-23 21:55:30 +0200 |
commit | e75996ce54f04798e4d0db0e93dd304ec12b0405 (patch) | |
tree | e75d969dc2d82ce5070790a8414efcadf6e2457a | |
parent | d39f6a617ca201517e320b38d609017f1183c572 (diff) | |
download | u-boot-e75996ce54f04798e4d0db0e93dd304ec12b0405.zip u-boot-e75996ce54f04798e4d0db0e93dd304ec12b0405.tar.gz u-boot-e75996ce54f04798e4d0db0e93dd304ec12b0405.tar.bz2 |
fs-test: fix false positive error at Test Case 12
The error message to be matched is wrong. Fix it.
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
Signed-off-by: Alexander Graf <agraf@suse.de>
-rwxr-xr-x | test/fs/fs-test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fs/fs-test.sh b/test/fs/fs-test.sh index 9482239..e002b91 100755 --- a/test/fs/fs-test.sh +++ b/test/fs/fs-test.sh @@ -522,7 +522,7 @@ function check_results() { "TC11: 1MB write to $3.w - content verified" # Check lookup of 'dot' directory - grep -A4 "Test Case 12 " "$1" | grep -q 'Unable to write file' + grep -A4 "Test Case 12 " "$1" | grep -q 'Unable to write' pass_fail "TC12: 1MB write to . - write denied" # Check directory traversal |