From b85ad0bc4e96566d8f936295e36fae2eef99d356 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 14 May 2012 06:05:48 +0000 Subject: Remove useless Thread::create(). Use safer C++isms for value allocation in ThreadVar. Test ThreadVar. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4412 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index f4ad382..752834d 100644 --- a/wscript +++ b/wscript @@ -187,9 +187,9 @@ def build(bld): bld.add_post_fun(autowaf.run_ldconfig) def test(ctx): - autowaf.pre_test(ctx, APPNAME) - autowaf.run_tests(ctx, APPNAME, tests.split(), dirs=['./src','./test']) - autowaf.post_test(ctx, APPNAME) + autowaf.pre_test(ctx, APPNAME, dirs=['.', 'src', 'test']) + autowaf.run_tests(ctx, APPNAME, tests.split(), dirs=['.', 'src', 'test']) + autowaf.post_test(ctx, APPNAME, dirs=['.', 'src', 'test']) def lint(ctx): subprocess.call('cpplint.py --filter=-whitespace/comments,-whitespace/tab,-whitespace/braces,-whitespace/labels,-build/header_guard,-readability/casting,-readability/todo,-build/namespaces,-whitespace/line_length,-runtime/rtti,-runtime/references,-whitespace/blank_line,-runtime/sizeof,-readability/streams,-whitespace/operators,-whitespace/parens,-build/include,-whitespace/comma,-whitespace/newline `find -name *.cpp -or -name *.hpp`', shell=True) -- cgit v1.2.1