summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2008-09-21 19:56:24 +0000
committernakeee <nakeee@gmail.com>2008-09-21 19:56:24 +0000
commit1ecfba66927c862ae504c31fcc52d0bccef1f0ee (patch)
tree9719f3a49e0dc4be6eaa7b4fa5b52002e86b8991
parente0291e735cd44972603528bf68b690d52bb1dcc3 (diff)
forgot the utils file
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@603 8ced0084-cf51-0410-be5f-012b33b47a6e
-rw-r--r--SconsTests/utils.py7
1 files changed, 7 insertions, 0 deletions
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')
+ )