diff options
author | Rob Savoye | 2010-11-10 10:40:50 -0700 |
---|---|---|
committer | Eric Blossom | 2010-11-10 12:17:58 -0800 |
commit | 649cf353deb00fcfce7da7e748dee77c3444e0e3 (patch) | |
tree | 7240ffd96a94966eac33473d0282526770eb9f25 /gnuradio-core/src/guile | |
parent | 8c2c60e6777a41a202a6e387384b1b536eb33c8b (diff) | |
download | gnuradio-649cf353deb00fcfce7da7e748dee77c3444e0e3.tar.gz gnuradio-649cf353deb00fcfce7da7e748dee77c3444e0e3.tar.bz2 gnuradio-649cf353deb00fcfce7da7e748dee77c3444e0e3.zip |
stub out the rest of the not found tests
Diffstat (limited to 'gnuradio-core/src/guile')
-rw-r--r-- | gnuradio-core/src/guile/tests/io_ctors.test | 39 |
1 files changed, 19 insertions, 20 deletions
diff --git a/gnuradio-core/src/guile/tests/io_ctors.test b/gnuradio-core/src/guile/tests/io_ctors.test index 6516ef7fe..80fb2d3f2 100644 --- a/gnuradio-core/src/guile/tests/io_ctors.test +++ b/gnuradio-core/src/guile/tests/io_ctors.test @@ -41,39 +41,38 @@ ;;; ./io/gr_file_sink.h (pass-if (true? (gr:file-sink 1 "foo"))) -;;; ./io/gr_file_source.h -;; (pass-if (true? (gr:file-source 1 "foo" false))) FIXME: not found +;;; ./io/gr_file_source.h FIXME: not found +;; (pass-if (true? (gr:file-source 1 "foo" false))) -;;; ./io/gr_histo_sink_f.h FIXME: needs gr_msg_queue_sptr +;;; ./io/gr_histo_sink_f.h FIXME: not found ;; gr_make_histo_sink_f (gr_msg_queue_sptr msgq); -;; (pass-if (true? (gr:histo-sink-f ))) +;; (pass-if (true? (gr:histo-sink-f 1))) -;;; ./io/gr_message_sink.h -;; (pass-if (true? (gr:message-sink ))) +;;; ./io/gr_message_sink.h FIXME: not found +;; (pass-if (true? (gr:message-sink 1 1 false))) ;;; ./io/gr_message_source.h ;; (pass-if (true? (gr:message-source ))) -;;; ./io/gr_oscope_sink_f.h FIXME: needs gr_io_signature_sptr +;;; ./io/gr_oscope_sink_f.h FIXME: not found ;; _oscope_sink_x (const std::string name, gr_io_signature_sptr input_sig, ;; double sample_rate); -;; (pass-if (true? (gr:oscope-sink-f ))) +;; (pass-if (true? (gr:oscope-sink-f "foo" 1 1))) -;;; ./io/gr_oscope_sink_x.h - -;; gr_oscope_sink_x (const std::string name, -;; gr_io_signature_sptr input_sig, +;;; ./io/gr_oscope_sink_x.h FIXME: not found +;; gr_oscope_sink_x (const std::string name, gr_io_signature_sptr input_sig, ;; double sampling_rate); -;; (pass-if (true? (gr:oscope_sink_x ))) +;; (pass-if (true? (gr:oscope_sink_x "foo" 1 1))) -;;; ./io/gr_udp_sink.h +;;; ./io/gr_udp_sink.h FIXME: not found +;; (pass-if (true? (gr:udp-sink 1 "foo" 1472 true))) -;;; ./io/gr_udp_source.h -;; (pass-if (true? (gr:message-source 0 "foo" 0 1472 true true))) FIXME: not found +;;; ./io/gr_udp_source.h FIXME: not found +;; (pass-if (true? (gr:message-source 0 "foo" 0 1472 true true))) -;;; ./io/gr_wavfile_sink.h -;; (pass-if (true? (gr:message-source "foo" 1 1 1))) FIXME: not found +;;; ./io/gr_wavfile_sink.h FIXME: not found +;; (pass-if (true? (gr:message-source "foo" 1 1 1))) -;;; ./io/gr_wavfile_source.h -;; (pass-if (true? (gr:message-source "foo" false))) FIXME: not found +;;; ./io/gr_wavfile_source.h FIXME: not found +;; (pass-if (true? (gr:message-source "foo" false))) |