Details
-
Bug
-
Resolution: Won't Fix
-
Minor
-
None
-
None
-
None
-
3
-
6824
Description
Every man can think that EXCEPT_SLOW is a list of test that should be skipped for "slow" testing. In many test we can see such lines as:
[ "$SLOW" = "no" ] && EXCEPT_SLOW="5"
[ "$SLOW" = "no" ] && EXCEPT_SLOW="12 23 33a"
That in fact means "following test should be run only when SLOW=true".
I suppose EXCEPT_SLOW should be something like SLOW_ONLY.
I understand that EXCEPT_SLOW can be read as "except slow tests",
but this is complicated logic.
What about ridding off EXCEPT_SLOW at all and move slow tests to separate suites, like sanity-slow, sanityn-slow?