diff options
author | Eric Blossom <eb@comsec.com> | 2010-12-23 11:00:58 -0800 |
---|---|---|
committer | Eric Blossom <eb@comsec.com> | 2010-12-23 11:00:58 -0800 |
commit | 9fe81031520463dfe46a890fc9d039d44929a43a (patch) | |
tree | 3138751195969ed6f0fd3251fabe5c5f3d7806cb /gnuradio-core/src/guile | |
parent | 272971a25cbd777634331a8777d2fbab2bb10ab7 (diff) |
Add test to see if Guile was built with threads enabled
Diffstat (limited to 'gnuradio-core/src/guile')
-rw-r--r-- | gnuradio-core/src/guile/tests/00_runtime_basics.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnuradio-core/src/guile/tests/00_runtime_basics.test b/gnuradio-core/src/guile/tests/00_runtime_basics.test index 18b298f223..4a5d967a14 100644 --- a/gnuradio-core/src/guile/tests/00_runtime_basics.test +++ b/gnuradio-core/src/guile/tests/00_runtime_basics.test @@ -32,6 +32,7 @@ (define (vector-map f v) (list->vector (map f (vector->list v)))) +(pass-if "Guile was built with threads" (not (not (memq 'threads *features*)))) (with-test-prefix "connect-1" (let* ((src-data #(-5 -4 -3 -2 -1 0 1 2 3 4 5)) |