From abf54aca0249991782a129419bd9a0552a46aef1 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sat, 3 May 2008 13:56:39 +0100 Subject: [PATCH] Test fix for Linux Organization: Straylight/Edgeware From: Richard Kettlewell --- tests/Makefile.am | 5 +++-- tests/cookie.py | 2 +- tests/dbversion.py | 2 +- tests/dump.py | 2 +- tests/files.py | 2 +- tests/play.py | 2 +- tests/queue.py | 2 +- tests/recode.py | 2 +- tests/search.py | 2 +- tests/user-upgrade.py | 2 +- tests/user.py | 2 +- 11 files changed, 13 insertions(+), 12 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index 6795672..08cfc0b 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -29,8 +29,9 @@ disorder_udplog_DEPENDENCIES=../lib/libdisorder.a TESTS=cookie.py dbversion.py dump.py files.py play.py queue.py \ recode.py search.py user-upgrade.py user.py +TESTS_ENVIRONMENT=${PYTHON} -u + clean-local: rm -rf testroot *.log *.pyc -EXTRA_DIST=dtest.py dbversion.py search.py \ - queue.py dump.py play.py cookie.py user-upgrade.py user.py recode.py +EXTRA_DIST=dtest.py ${TESTS} diff --git a/tests/cookie.py b/tests/cookie.py index 21353b0..8a91829 100755 --- a/tests/cookie.py +++ b/tests/cookie.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python -u +#! /usr/bin/env python # # This file is part of DisOrder. # Copyright (C) 2007 Richard Kettlewell diff --git a/tests/dbversion.py b/tests/dbversion.py index c93e1e8..218e0c9 100755 --- a/tests/dbversion.py +++ b/tests/dbversion.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python -u +#! /usr/bin/env python # # This file is part of DisOrder. # Copyright (C) 2007, 2008 Richard Kettlewell diff --git a/tests/dump.py b/tests/dump.py index c935f20..ff28a0f 100755 --- a/tests/dump.py +++ b/tests/dump.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python -u +#! /usr/bin/env python # # This file is part of DisOrder. # Copyright (C) 2007, 2008 Richard Kettlewell diff --git a/tests/files.py b/tests/files.py index 65211dc..984c6cc 100755 --- a/tests/files.py +++ b/tests/files.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python -u +#! /usr/bin/env python # # This file is part of DisOrder. # Copyright (C) 2007, 2008 Richard Kettlewell diff --git a/tests/play.py b/tests/play.py index 35cc7a3..0013d7e 100755 --- a/tests/play.py +++ b/tests/play.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python -u +#! /usr/bin/env python # # This file is part of DisOrder. # Copyright (C) 2007, 2008 Richard Kettlewell diff --git a/tests/queue.py b/tests/queue.py index a1ddedf..dae37b4 100755 --- a/tests/queue.py +++ b/tests/queue.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python -u +#! /usr/bin/env python # # This file is part of DisOrder. # Copyright (C) 2007, 2008 Richard Kettlewell diff --git a/tests/recode.py b/tests/recode.py index d57db02..2878e68 100755 --- a/tests/recode.py +++ b/tests/recode.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python -u +#! /usr/bin/env python # # This file is part of DisOrder. # Copyright (C) 2008 Richard Kettlewell diff --git a/tests/search.py b/tests/search.py index 556a24c..5e3d200 100755 --- a/tests/search.py +++ b/tests/search.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python -u +#! /usr/bin/env python # # This file is part of DisOrder. # Copyright (C) 2007, 2008 Richard Kettlewell diff --git a/tests/user-upgrade.py b/tests/user-upgrade.py index ffd30ea..d35e4f6 100755 --- a/tests/user-upgrade.py +++ b/tests/user-upgrade.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python -u +#! /usr/bin/env python # # This file is part of DisOrder. # Copyright (C) 2007, 2008 Richard Kettlewell diff --git a/tests/user.py b/tests/user.py index 4c4fa48..ffc1fdc 100755 --- a/tests/user.py +++ b/tests/user.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python -u +#! /usr/bin/env python # # This file is part of DisOrder. # Copyright (C) 2007, 2008 Richard Kettlewell -- [mdw]