# HG changeset patch # User Ralf Wildenhues # Date 1283031181 -7200 # Node ID 7ac1c28fe4c72266af8f46d07041c9d408b391d0 # Parent da5ad6f9fbd9b568250c716992dfb36dbf7f1da2 Tests for module 'malloc-gnu'. * modules/malloc-gnu-tests: New file. * tests/test-malloc-gnu.c: New file. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-08-28 Ralf Wildenhues + + Tests for module 'malloc-gnu'. + * modules/malloc-gnu-tests: New file. + * tests/test-malloc-gnu.c: New file. + 2010-08-28 Bruno Haible Rename module 'realloc' -> 'realloc-gnu'. diff --git a/modules/malloc-gnu-tests b/modules/malloc-gnu-tests new file mode 100644 --- /dev/null +++ b/modules/malloc-gnu-tests @@ -0,0 +1,10 @@ +Files: +tests/test-malloc-gnu.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-malloc-gnu +check_PROGRAMS += test-malloc-gnu diff --git a/tests/test-malloc-gnu.c b/tests/test-malloc-gnu.c new file mode 100644 --- /dev/null +++ b/tests/test-malloc-gnu.c @@ -0,0 +1,29 @@ +/* Test of malloc function. + Copyright (C) 2010 Free Software Foundation, Inc. + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +#include + +#include + +int +main () +{ + /* Check that malloc (0) is not a NULL pointer. */ + if (malloc (0) == NULL) + return 1; + + return 0; +}