avoid doing mac os x-specific tests unless under mac os x

svn: r18154
This commit is contained in:
Robby Findler 2010-02-18 20:36:03 +00:00
parent 202c056c53
commit 8424dea37b

View File

@ -94,7 +94,9 @@
frames)
(map (lambda (x) (send x get-label)) frames)))))
(test
(when (eq? (system-type) 'macosx)
(test
'windows-menu
(lambda (x)
(equal? x (append windows-menu-prefix (list "first" "test"))))
@ -112,7 +114,7 @@
get-items))
(send (get-top-level-focus-window) close)))))
(test
(test
'windows-menu-unshown
(lambda (x)
(equal? x (append windows-menu-prefix (list "first" "test"))))
@ -131,7 +133,7 @@
get-items))
(send (get-top-level-focus-window) close)))))
(test
(test
'windows-menu-sorted1
(lambda (x)
(equal? x (append windows-menu-prefix (list "aaa" "bbb" "first"))))
@ -156,7 +158,7 @@
(send x close)))
frames))))))
(test
(test
'windows-menu-sorted2
(lambda (x)
(equal? x (append windows-menu-prefix (list "aaa" "bbb" "first"))))
@ -180,3 +182,4 @@
(unless (equal? (send x get-label) "first")
(send x close)))
frames))))))
)