summaryrefslogtreecommitdiff
path: root/gr-run-waveform/guile/simple.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gr-run-waveform/guile/simple.scm')
-rw-r--r--gr-run-waveform/guile/simple.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/gr-run-waveform/guile/simple.scm b/gr-run-waveform/guile/simple.scm
new file mode 100644
index 000000000..af7637be1
--- /dev/null
+++ b/gr-run-waveform/guile/simple.scm
@@ -0,0 +1,22 @@
+(define filename "ice-9/boot-9")
+
+;; System default path
+(define path %load-path)
+path
+;;
+(define path-with-xyzzy (cons "/-xyzzy-" path))
+path-with-xyzzy
+;;
+;; look for .scm or no extension
+(define extensions '(".scm" ""))
+
+;; Both of these return "/usr/share/guile/1.8/ice-9/boot-9.scm"
+(define result1 (search-path path filename extensions))
+
+(define result2 (search-path path-with-xyzzy filename extensions))
+
+;; Should return "/usr/share/guile/1.8/ice-9/boot-9.scm"
+(define result3 (xyzzy-search-path path filename extensions))
+
+;; Should return "/-xyzzy-/ice-9/boot-9.scm"
+(define result4 (xyzzy-search-path path-with-xyzzy filename extensions))