diff options
Diffstat (limited to 'test/framework.py')
-rw-r--r-- | test/framework.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/framework.py b/test/framework.py index 3386c201e33..210eadbf4c5 100644 --- a/test/framework.py +++ b/test/framework.py @@ -222,7 +222,7 @@ class VppTestCase(unittest.TestCase): try: c = os.getenv("CACHE_OUTPUT", "1") cls.cache_vpp_output = \ - True if c.lower() in ("y", "yes", "1") else False + False if c.lower() in ("n", "no", "0") else True except: cls.cache_vpp_output = True cls.set_debug_flags(d) |