Skip to content

Commit

Permalink
the loadlib-examples test tries to load BLAS, which we don't support …
Browse files Browse the repository at this point in the history
…just yet. marked as TODO
  • Loading branch information
Whiteknight committed Oct 21, 2009
1 parent c79e40e commit 9de8a4d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions t/800-loadlibrary-examples.t
@@ -1,4 +1,6 @@
plan(4)
plan(4);

start_todo("BLAS is part of parrot-linear-algebra");

import_cblas_library
addpath("examples/loadlibrary/");
Expand All @@ -19,4 +21,6 @@ is(A*B, C, "real blas matrix product")
A = [ 1+2i 2+3i 3+4i; 4+5i 5+6i 6+7i];
B = [ 2-i 3-2i ; 5-4i 7-6i ; 11-10i 13-12i];
C = blas_mtimes(A, B, 'Complex');
is(A*B, C, "complex blas matrix product")
is(A*B, C, "complex blas matrix product")

end_todo();

0 comments on commit 9de8a4d

Please sign in to comment.