]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/alien/parser/parser-tests.factor
rename current string-mangling "char*" to "c-string". char* is now just a boring...
[factor.git] / basis / alien / parser / parser-tests.factor
index 37f10722d1845e02e2d8592ad91a4075926ddbcc..a730e3084f8d9a323c8cb97d38b0816adf3dfd4d 100644 (file)
@@ -23,9 +23,9 @@ CONSTANT: eleven 11
     [ pointer: int* ] [ "int**" parse-c-type ] unit-test
     [ pointer: int** ] [ "int***" parse-c-type ] unit-test
     [ pointer: int*** ] [ "int****" parse-c-type ] unit-test
-    [ pointer: char ] [ "char*" parse-c-type ] unit-test
+    [ c-string ] [ "c-string" parse-c-type ] unit-test
     [ char2 ] [ "char2" parse-c-type ] unit-test
-    [ pointer: char2 ] [ "char2*" parse-c-type ] unit-test
+    [ c-string2 ] [ "char2*" parse-c-type ] unit-test
 
     [ "not-word" parse-c-type ] [ error>> no-word-error? ] must-fail-with
 ] with-file-vocabs