From 1ecfba66927c862ae504c31fcc52d0bccef1f0ee Mon Sep 17 00:00:00 2001 From: nakeee Date: Sun, 21 Sep 2008 19:56:24 +0000 Subject: [PATCH] forgot the utils file git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@603 8ced0084-cf51-0410-be5f-012b33b47a6e --- SconsTests/utils.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 SconsTests/utils.py diff --git a/SconsTests/utils.py b/SconsTests/utils.py new file mode 100644 index 0000000000..290f91eea1 --- /dev/null +++ b/SconsTests/utils.py @@ -0,0 +1,7 @@ +# methods that should be added to env +def filterWarnings(self, flags): + return ' '.join( + flag + for flag in flags + if not flag.startswith('-W') + )