diff tests/swig_tests/audio_tests.py @ 42:4c8334b0ab30

switched scons tests=1 to build unittest++ tests instead of boost ones. Tests kept in separate executables to make it work in the same way as with old tests (integrated part of test_fife unit testing script). Audio tests shortened.
author jasoka@33b003aa-7bff-0310-803a-e67f0ece8222
date Sun, 13 Jul 2008 07:43:33 +0000
parents 4a0efb7baf70
children d2f1e81fbe2c
line wrap: on
line diff
--- a/tests/swig_tests/audio_tests.py	Sat Jul 12 14:45:59 2008 +0000
+++ b/tests/swig_tests/audio_tests.py	Sun Jul 13 07:43:33 2008 +0000
@@ -21,7 +21,7 @@
 		sound.setSoundClip(id)
 		sound.setLooping(True)
 		sound.play()
-		time.sleep(15);
+		time.sleep(3);
 	
 	def test2Streams(self):
 		em = self.soundmanager.createEmitter()
@@ -34,7 +34,7 @@
 		em.setGain(0.7)
 		em.play()
 		sound.play()
-		time.sleep(15);
+		time.sleep(3);
 
 TEST_CLASSES = [TestAudio]