diff options
author | Rob Savoye | 2010-11-09 21:51:45 -0700 |
---|---|---|
committer | Eric Blossom | 2010-11-10 12:17:58 -0800 |
commit | 1c2355390190f67762a39d77424b5e48563cfe9a (patch) | |
tree | e0f50d8eb32b1bab4ea949c38113c7a99e8dc90b | |
parent | 15987345134793d3f6f0618bdf6b45ffc6609c0c (diff) | |
download | gnuradio-1c2355390190f67762a39d77424b5e48563cfe9a.tar.gz gnuradio-1c2355390190f67762a39d77424b5e48563cfe9a.tar.bz2 gnuradio-1c2355390190f67762a39d77424b5e48563cfe9a.zip |
stub out all the tests, but they depend on the next branch. :-(
-rw-r--r-- | gnuradio-core/src/guile/tests/io_ctors.test | 37 |
1 files changed, 35 insertions, 2 deletions
diff --git a/gnuradio-core/src/guile/tests/io_ctors.test b/gnuradio-core/src/guile/tests/io_ctors.test index 8bb0bc34f..6516ef7fe 100644 --- a/gnuradio-core/src/guile/tests/io_ctors.test +++ b/gnuradio-core/src/guile/tests/io_ctors.test @@ -31,16 +31,49 @@ ;;; Add test code for all constructors in these files ;;; + ;;; ./io/gr_file_descriptor_sink.h +;;(pass-if (true? (gr:file-descriptor-sink 0 0))) FIXME: throws gr_io_signature(3) + ;;; ./io/gr_file_descriptor_source.h +;; (pass-if (true? (gr:file-descriptor-source 1 1 false))) FIXME: not found + ;;; ./io/gr_file_sink.h +(pass-if (true? (gr:file-sink 1 "foo"))) + ;;; ./io/gr_file_source.h -;;; ./io/gr_histo_sink_f.h +;; (pass-if (true? (gr:file-source 1 "foo" false))) FIXME: not found + +;;; ./io/gr_histo_sink_f.h FIXME: needs gr_msg_queue_sptr +;; gr_make_histo_sink_f (gr_msg_queue_sptr msgq); +;; (pass-if (true? (gr:histo-sink-f ))) + ;;; ./io/gr_message_sink.h +;; (pass-if (true? (gr:message-sink ))) + ;;; ./io/gr_message_source.h -;;; ./io/gr_oscope_sink_f.h +;; (pass-if (true? (gr:message-source ))) + +;;; ./io/gr_oscope_sink_f.h FIXME: needs gr_io_signature_sptr +;; _oscope_sink_x (const std::string name, gr_io_signature_sptr input_sig, +;; double sample_rate); +;; (pass-if (true? (gr:oscope-sink-f ))) + ;;; ./io/gr_oscope_sink_x.h + +;; gr_oscope_sink_x (const std::string name, +;; gr_io_signature_sptr input_sig, +;; double sampling_rate); +;; (pass-if (true? (gr:oscope_sink_x ))) + ;;; ./io/gr_udp_sink.h + ;;; ./io/gr_udp_source.h +;; (pass-if (true? (gr:message-source 0 "foo" 0 1472 true true))) FIXME: not found + ;;; ./io/gr_wavfile_sink.h +;; (pass-if (true? (gr:message-source "foo" 1 1 1))) FIXME: not found + ;;; ./io/gr_wavfile_source.h +;; (pass-if (true? (gr:message-source "foo" false))) FIXME: not found + |