Statistics
| Branch: | Tag: | Revision:

root / Guile-TODO @ 3f94d49b

History | View | Annotate | Download (2.7 kB)

1
In no particular order:
2
3
11) Write test cases for gr-* components.
4
5
    For the one's that have a h/w dependency, just confirm that we can
6
    load the module.  See gr_audio_alsa/src/audio_alsa.test for an
7
    example.
8
9
    For the others, write a test in the style of the ones in
10
    gnuradio-core. 
11
12
13
80) Confirm make dist and make distcheck work
14
81) Anything else that would keep us from merging into next.
15
82) Get some other developers to try it out.
16
17
90)  Merge to next
18
100) Handle any fallout we missed.
19
20
-------------------------------------------------------------------------------
21
Low priority:
22
23
6)  Fix printed representation of blocks in gr_block.i
24
25
9)  Any other FIXME style warnings.
26
    (Last one is in usrp2.i)
27
28
12) Swig guile modules names: s/_/-/g
29
30
16) Test this stuff with Guile 1.9 to confirm that it works and to see
31
    how much faster it is.  Load time currently is currently kind of doggy.
32
33
34
-------------------------------------------------------------------------------
35
These are done:
36
37
38
1)  [DONE] Ensure that libraries containing swig generated code are regenerated
39
    when any relevant .i file is touched.
40
41
2)  [DONE] SIGINT handling in gr_top_block::wait
42
43
3)  [DONE] Ensure that all 4 combinations of
44
    --{enable,disable}-python --{enable,disable}-guile
45
    work correctly.
46
47
    When both are disabled swig should NOT be run.
48
    When --enable-guile --disable-python, python swig stuff should not be generated.
49
    When --disable-guile --enable-python, guile swig stuff should not be generated.
50
51
4)  [DONE] Fix GR_SWIG_BLOCK_MAGIC so that in the guile case we don't map all
52
    the constructors into the same name.  E.g. audio_alsa_sink -> sink.
53
    (Causes problem when multiple gr-* modules are used.)
54
55
5)  [DONE]Ensure that all gr-* components are generating guile code when
56
    enabled, and that (1) and (3) are handled in all gr-* components.
57
58
5b) [DONE] Don't forget gr-howto-write-a-block. (It's got its own
59
    configure.ac and is built separately from the rest.)
60
61
7)  [DONE] Fix gr-usrp so that it works.  Probably related to
62
    warning received when generating python bindings.
63
    Making the swig/python warning go away will probably resolve the
64
    guile problem.
65
66
8)  [DONE] Fix gr_message_{sink,source} so that they work under guile.
67
    (Not sure if I disabled one or both of these...)
68
69
10) [DONE] Finish gnuradio-core test cases
70
71
13) [DONE] Change guile libnames to libguile-gnuradio-<module-name>
72
73
14) [DONE] Add support to setup_guile_test_env.in for
74
    "withlibs", OS/X (DYLD_LIBRARY_PATH), windows (PATH)
75
76
15) [DONE] Rewrite gr-run-waveform as C/C++ code that embeds guile.
77
    See if we can't statically link libguile into this.
78
    Will need to figure out which packages provide libguile.a.
79
80
17) [DONE] Get std::vector< std::complex<float> > working