diff options
-rw-r--r-- | gr-audio-alsa/src/audio_alsa.test | 9 |
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)) - |