summaryrefslogtreecommitdiff
path: root/gr-audio-alsa/src/audio_alsa.test
diff options
context:
space:
mode:
authorEric Blossom2010-11-12 15:04:10 -0800
committerEric Blossom2010-11-12 15:04:10 -0800
commit76e2fa796a42df7951f05f73428e178c84879b79 (patch)
treecf0529954d36b04ca17c86b8eb55a45a97a925cf /gr-audio-alsa/src/audio_alsa.test
parent2947504322ac5105f9181adbdbd035aa02ad0f41 (diff)
downloadgnuradio-76e2fa796a42df7951f05f73428e178c84879b79.tar.gz
gnuradio-76e2fa796a42df7951f05f73428e178c84879b79.tar.bz2
gnuradio-76e2fa796a42df7951f05f73428e178c84879b79.zip
make check in gr-audio-alsa now confirms ability to load guile bindings.
Diffstat (limited to 'gr-audio-alsa/src/audio_alsa.test')
-rw-r--r--gr-audio-alsa/src/audio_alsa.test38
1 files changed, 38 insertions, 0 deletions
diff --git a/gr-audio-alsa/src/audio_alsa.test b/gr-audio-alsa/src/audio_alsa.test
new file mode 100644
index 000000000..edf425b9f
--- /dev/null
+++ b/gr-audio-alsa/src/audio_alsa.test
@@ -0,0 +1,38 @@
+;;; -*- Scheme -*-
+;;;
+;;; Copyright 2010 Free Software Foundation, Inc.
+;;;
+;;; This file is part of GNU Radio
+;;;
+;;; GNU Radio is free software; you can redistribute it and/or modify
+;;; it under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3, or (at your option)
+;;; any later version.
+;;;
+;;; GNU Radio is distributed in the hope that it will be useful,
+;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with this program. If not, see <http://www.gnu.org/licenses/>.
+;;;
+
+;;; If you're using Emacs's Scheme mode:
+;;; (put 'with-test-prefix 'scheme-indent-function 1)
+
+;;; See the comments in gnuradio/test-suite/lib.scm for info on writing tests.
+;;; See also the very end of the file, where the test-equal, test-eqv
+;;; and test-eq macros are defined.
+
+(use-modules (gnuradio test-suite lib))
+(use-modules (gnuradio core))
+(use-modules (oop goops))
+
+;;; Just see if we can import the module...
+;;; They may not have ALSA drivers, etc.
+
+(use-modules (gnuradio audio_alsa))
+
+
+