]> gitweb.factorcode.org Git - factor.git/blob - basis/libc/libc-tests.factor
85b2e8153604bc232fba4991ce39ecee9de1352a
[factor.git] / basis / libc / libc-tests.factor
1 IN: libc.tests
2 USING: destructors kernel libc libc.private namespaces
3 tools.test ;
4
5 100 malloc "block" set
6
7 { t } [ "block" get malloc-exists? ] unit-test
8
9 { } [ [ "block" get &free drop ] with-destructors ] unit-test
10
11 { f } [ "block" get malloc-exists? ] unit-test
12
13 { "Operation not permitted" } [ 1 strerror ] unit-test