summaryrefslogtreecommitdiff
path: root/gr-run-waveform/guile/simple.scm
blob: ae8ef9b60c7bb29fe1b76ebc422262caedc0942f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
(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 expected "/usr/share/guile/1.8/ice-9/boot-9.scm")
(define result1 (search-path path filename extensions))
(if (string=? result1 expected)
    (display "PASSED: xyzzy-search-path from guile\n")
    (display "FAILED: xyzzy-search-path from guile\n"))

(define result2 (search-path path-with-xyzzy filename extensions))
(if (string=? result2 expected)
    (display "PASSED: xyzzy-search-path from guile\n")
    (display "FAILED: xyzzy-search-path from guile\n"))

;; Should return "/usr/share/guile/1.8/ice-9/boot-9.scm"
(define result3 (xyzzy-search-path path filename extensions))
(if (string=? result3 expected)
    (display "PASSED: xyzzy-search-path from guile\n")
    (display "FAILED: xyzzy-search-path from guile\n"))

;; Should return "/-xyzzy-/ice-9/boot-9.scm"
(define expected "/-xyzzy-/ice-9/boot-9.scm")
(define result4 (xyzzy-search-path path-with-xyzzy filename extensions))
(if (string=? result4 expected)
    (display "PASSED: xyzzy-search-path from guile\n")
    (display "FAILED: xyzzy-search-path from guile\n"))

;; (define result5 (primitive-load filename))

;; (define result6 (xyzzy-primitive-load file))

;; FIXME: not sure how to tell if this worked other than if the test doesn't crash
(define result7 (xyzzy-primitive-load expected))
(define result8 (xyzzy-primitive-load-path expected))

;; This should return the full name, or #f if it fails.
(define result9 (xyzzy-search-load-path filename))
(if (boolean? result9)
    (display "FAILED: xyzzy-search-load-path from guile\n")
    (if (string=? result9 result1)
	(display "PASSES: xyzzy-search-load-path from guile\n")
	(display "FAILED: xyzzy-search-load-path from guile\n")))

(define result10 (xyzzy-search-load-path expected))
(if (boolean? result9)
    (display "FAILED: xyzzy-search-load-path from guile\n")
    (if (string=? result10 expected)
	(display "PASSED: xyzzy-search-load-path from guile\n")
	(display "FAILED: xyzzy-search-load-path from guile\n")))