summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Blossom2010-11-23 21:43:22 -0800
committerEric Blossom2010-11-23 21:43:22 -0800
commit6d39f287754ec8809256853ff96587da34561f47 (patch)
tree641b342821418590f0a5d515485744d75bcc9bae
parent7039c1b4c11a114bbc79f9beef23bfa52209dbe1 (diff)
downloadgnuradio-6d39f287754ec8809256853ff96587da34561f47.tar.gz
gnuradio-6d39f287754ec8809256853ff96587da34561f47.tar.bz2
gnuradio-6d39f287754ec8809256853ff96587da34561f47.zip
Update to new test boilerplate
-rw-r--r--gr-audio-alsa/src/audio_alsa.test9
1 files changed, 5 insertions, 4 deletions
diff --git a/gr-audio-alsa/src/audio_alsa.test b/gr-audio-alsa/src/audio_alsa.test
index 240045593..7997b9283 100644
--- a/gr-audio-alsa/src/audio_alsa.test
+++ b/gr-audio-alsa/src/audio_alsa.test
@@ -25,12 +25,13 @@
;;; 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))
+(define-module (test-module)
+ #:use-module (oop goops)
+ #:use-module (gnuradio core)
+ #:use-module (gnuradio test-suite lib)
+ #:duplicates (merge-generics replace check))
;;; Just see if we can import the module...
;;; They may not have ALSA drivers, etc.
(use-modules (gnuradio audio_alsa))
-