renamed run_all_tests script
authorPaul Brossier <piem@piem.org>
Thu, 25 Oct 2007 02:00:15 +0000 (04:00 +0200)
committerPaul Brossier <piem@piem.org>
Thu, 25 Oct 2007 02:00:15 +0000 (04:00 +0200)
python/test/all_tests.py [deleted file]
python/test/run_all_tests [new file with mode: 0755]

diff --git a/python/test/all_tests.py b/python/test/all_tests.py
deleted file mode 100755 (executable)
index a066ca3..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#! /usr/bin/python
-
-# add ${src}/python and ${src}/python/aubio/.libs to python path
-# so the script is runnable from a compiled source tree.
-import sys, os
-sys.path.append('..')
-sys.path.append(os.path.join('..','aubio','.libs'))
-
-import unittest
-
-modules_to_test = ['aubiomodule', 'fvec', 'cvec']
-
-if __name__ == '__main__':
-  for module in modules_to_test: exec('from %s import *' % module)
-  unittest.main()
diff --git a/python/test/run_all_tests b/python/test/run_all_tests
new file mode 100755 (executable)
index 0000000..a066ca3
--- /dev/null
@@ -0,0 +1,15 @@
+#! /usr/bin/python
+
+# add ${src}/python and ${src}/python/aubio/.libs to python path
+# so the script is runnable from a compiled source tree.
+import sys, os
+sys.path.append('..')
+sys.path.append(os.path.join('..','aubio','.libs'))
+
+import unittest
+
+modules_to_test = ['aubiomodule', 'fvec', 'cvec']
+
+if __name__ == '__main__':
+  for module in modules_to_test: exec('from %s import *' % module)
+  unittest.main()