summaryrefslogtreecommitdiff
path: root/gr-run-waveform/test_xyzzy.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gr-run-waveform/test_xyzzy.cc')
-rw-r--r--gr-run-waveform/test_xyzzy.cc25
1 files changed, 1 insertions, 24 deletions
diff --git a/gr-run-waveform/test_xyzzy.cc b/gr-run-waveform/test_xyzzy.cc
index 2e920207a..452786fd0 100644
--- a/gr-run-waveform/test_xyzzy.cc
+++ b/gr-run-waveform/test_xyzzy.cc
@@ -38,29 +38,6 @@ using namespace std;
boost::uint8_t hex2digit(boost::uint8_t digit);
boost::shared_array<boost::uint8_t> hex2mem(const std::string &str);
-SCM_DEFINE (scm_i_make_gnuradio,
- "%gnuradio", 1, 0, 0,
- (SCM port),
- "Return a new port which reads and writes to @var{port}");
-#if 0
-#define FUNC_NAME s_scm_i_make_gnuradio
-{
- SCM result;
- unsigned long mode = 0;
-
- SCM_VALIDATE_PORT (SCM_ARG1, port);
-
- if (scm_is_true (scm_output_port_p (port)))
- mode |= SCM_WRTNG;
- else if (scm_is_true (scm_input_port_p (port)))
- mode |= SCM_RDNG;
-
- result = make_tp (port, mode);
-
- return result;
-}
-#endif
-
static SCM
test_xyzzy (void)
{
@@ -74,7 +51,7 @@ inner_main (void *data, int argc, char **argv)
{
scm_c_define_gsubr ("test-xyzzy", 0, 0, 0, test_xyzzy);
-// scm_shell (argc, argv);
+ scm_shell (argc, argv);
}
int