Blame tests/linkhuge_nofd.c

Packit 2d622a
/*
Packit 2d622a
 * libhugetlbfs - Easy use of Linux hugepages
Packit 2d622a
 * Copyright (C) 2005-2006 David Gibson & Adam Litke, IBM Corporation.
Packit 2d622a
 *
Packit 2d622a
 * This library is free software; you can redistribute it and/or
Packit 2d622a
 * modify it under the terms of the GNU Lesser General Public License
Packit 2d622a
 * as published by the Free Software Foundation; either version 2.1 of
Packit 2d622a
 * the License, or (at your option) any later version.
Packit 2d622a
 *
Packit 2d622a
 * This library is distributed in the hope that it will be useful, but
Packit 2d622a
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 2d622a
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 2d622a
 * Lesser General Public License for more details.
Packit 2d622a
 *
Packit 2d622a
 * You should have received a copy of the GNU Lesser General Public
Packit 2d622a
 * License along with this library; if not, write to the Free Software
Packit 2d622a
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Packit 2d622a
 */
Packit 2d622a
Packit 2d622a
#include <stdio.h>
Packit 2d622a
#include <stdlib.h>
Packit 2d622a
#include <string.h>
Packit 2d622a
#include <unistd.h>
Packit 2d622a
#include <sys/mman.h>
Packit 2d622a
Packit 2d622a
#include "hugetests.h"
Packit 2d622a
Packit 2d622a
/* Override the working version from libhugetlbfs */
Packit 2d622a
int hugetlbfs_unlinked_fd_for_size(long page_size)
Packit 2d622a
{
Packit 2d622a
	return -1;
Packit 2d622a
}
Packit 2d622a
Packit 2d622a
int main(int argc, char *argv[])
Packit 2d622a
{
Packit 2d622a
	test_init(argc, argv);
Packit 2d622a
Packit 2d622a
	/* All we're testing is that we survive the library attempting
Packit 2d622a
	 * and failing to remap us into hugepages */
Packit 2d622a
Packit 2d622a
	PASS();
Packit 2d622a
}