]> gitweb.factorcode.org Git - factor.git/commitdiff
wrap alien.fortran c-type conversion tests in with-manifest
authorJoe Groff <arcata@gmail.com>
Tue, 2 Feb 2010 06:03:51 +0000 (22:03 -0800)
committerJoe Groff <arcata@gmail.com>
Tue, 2 Feb 2010 06:03:51 +0000 (22:03 -0800)
basis/alien/fortran/fortran-tests.factor

index a4099a9cc4ca24ce4d770ed72d44208c5ebf91f1..79bf59c239231520c2b51252ab0c13dbf3bbdda3 100644 (file)
@@ -3,7 +3,7 @@ USING: accessors alien alien.c-types alien.complex
 alien.data alien.fortran alien.fortran.private alien.strings
 classes.struct arrays assocs byte-arrays combinators fry
 generalizations io.encodings.ascii kernel macros
-macros.expander namespaces sequences shuffle tools.test ;
+macros.expander namespaces sequences shuffle tools.test vocabs.parser ;
 QUALIFIED-WITH: alien.c-types c
 IN: alien.fortran.tests
 
@@ -91,7 +91,12 @@ intel-unix-abi fortran-abi [
     [ "complex*16" fortran-type>c-type ] unit-test
 
     [ fortran_test_record ]
-    [ "fortran_test_record" fortran-type>c-type ] unit-test
+    [
+        [
+            "alien.fortran.tests" use-vocab
+            "fortran_test_record" fortran-type>c-type
+        ] with-manifest
+    ] unit-test
 
     ! fortran-arg-type>c-type
 
@@ -105,7 +110,12 @@ intel-unix-abi fortran-abi [
     [ "integer(*)" fortran-arg-type>c-type ] unit-test
 
     [ c:void* { } ]
-    [ "fortran_test_record" fortran-arg-type>c-type ] unit-test
+    [
+        [
+            "alien.fortran.tests" use-vocab
+            "fortran_test_record" fortran-arg-type>c-type
+        ] with-manifest
+    ] unit-test
 
     [ c:char* { } ]
     [ "character" fortran-arg-type>c-type ] unit-test