diff options
author | Rob Savoye | 2010-11-29 18:19:15 -0700 |
---|---|---|
committer | Rob Savoye | 2010-11-29 18:19:15 -0700 |
commit | 98a91e0f2cb8ebdc89dd6ba24fd25911303249a7 (patch) | |
tree | 6c88c318474b61d398f9794f450847051596ea78 /gr-run-waveform/guile/simple.scm | |
parent | 329c5da374781e5cd2e93e89de12bdf7fb71f979 (diff) | |
download | gnuradio-98a91e0f2cb8ebdc89dd6ba24fd25911303249a7.tar.gz gnuradio-98a91e0f2cb8ebdc89dd6ba24fd25911303249a7.tar.bz2 gnuradio-98a91e0f2cb8ebdc89dd6ba24fd25911303249a7.zip |
fix xyzzy-search-load-path, now the function works.
Diffstat (limited to 'gr-run-waveform/guile/simple.scm')
-rw-r--r-- | gr-run-waveform/guile/simple.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-run-waveform/guile/simple.scm b/gr-run-waveform/guile/simple.scm index eafef0e6c..d28bfc1cd 100644 --- a/gr-run-waveform/guile/simple.scm +++ b/gr-run-waveform/guile/simple.scm @@ -46,10 +46,10 @@ path-with-xyzzy ;; This should return the full name, or #f if it fails. (define result9 (xyzzy-search-load-path filename)) (if (boolean? result9) - (display "XFAILED: xyzzy-search-load-path from guile\n") + (display "FAILED: xyzzy-search-load-path from guile\n") (if (string=? result9 expected) - (display "XFAILED: xyzzy-search-load-path from guile\n") - (display "XPASSED: xyzzy-search-load-path from guile\n"))) + (display "FAILED: xyzzy-search-load-path from guile\n") + (display "PASSED: xyzzy-search-load-path from guile\n"))) (define result10 (xyzzy-search-load-path expected)) (if (boolean? result9) |