From e4404fbef077a481e58ec0b31dfcf79b521caff6 Mon Sep 17 00:00:00 2001 From: danicampora Date: Mon, 16 Nov 2015 20:37:58 +0100 Subject: cc3200: Unmount all user file systems after a soft reset. --- tests/wipy/os.py | 10 ++++++++++ tests/wipy/os.py.exp | 2 ++ 2 files changed, 12 insertions(+) (limited to 'tests') diff --git a/tests/wipy/os.py b/tests/wipy/os.py index cacd10958..f81d1cee8 100644 --- a/tests/wipy/os.py +++ b/tests/wipy/os.py @@ -124,6 +124,16 @@ try: except: print('Exception') +try: + os.unmount('/something') +except: + print('Exception') + +try: + os.unmount('something') +except: + print('Exception') + try: os.mkfs('flash') # incorrect path format except: diff --git a/tests/wipy/os.py.exp b/tests/wipy/os.py.exp index 55a0879aa..a0f01e35e 100644 --- a/tests/wipy/os.py.exp +++ b/tests/wipy/os.py.exp @@ -27,4 +27,6 @@ Exception Exception Exception Exception +Exception +Exception ['flash', 'sd'] -- cgit v1.2.3