]> www.infradead.org Git - users/sagi/blktests.git/commitdiff
check: fix QUICK_RUN && ! TIMEOUT check
authorOmar Sandoval <osandov@fb.com>
Mon, 25 Jun 2018 18:09:18 +0000 (11:09 -0700)
committerOmar Sandoval <osandov@fb.com>
Mon, 25 Jun 2018 18:09:18 +0000 (11:09 -0700)
Signed-off-by: Omar Sandoval <osandov@fb.com>
check

diff --git a/check b/check
index 4baa8dde2436256eec9752271a441958baf7f464..c608b578f6b32c49ee7cd0fbd398654452351006 100755 (executable)
--- a/check
+++ b/check
@@ -605,7 +605,7 @@ while true; do
        esac
 done
 
-if [[ QUICK_RUN -ne 0 && ! -v TIMEOUT ]]; then
+if [[ $QUICK_RUN -ne 0 && ! -v TIMEOUT ]]; then
        _error "QUICK_RUN specified without TIMEOUT"
 fi