From 34daf961cff3bf87217b6bf9835ccf402781a46a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 26 Apr 2014 19:29:19 +0000 Subject: Ignore errors when attempting to delete test state directory. git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5372 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wscript b/wscript index 79017f0..194a987 100644 --- a/wscript +++ b/wscript @@ -407,7 +407,10 @@ def test(ctx): os.environ['PATH'] = 'test' + os.pathsep + os.getenv('PATH') autowaf.run_tests(ctx, APPNAME, ['lilv_test'], dirs=['./src','./test']) autowaf.post_test(ctx, APPNAME) - shutil.rmtree('state') + try: + shutil.rmtree('state') + except: + pass def lint(ctx): subprocess.call('cpplint.py --filter=+whitespace/comments,-whitespace/tab,-whitespace/braces,-whitespace/labels,-build/header_guard,-readability/casting,-readability/todo,-build/include,-runtime/sizeof src/* lilv/*', shell=True) -- cgit v1.2.1