/***
This file is part of systemd
Copyright 2014 Ronny Chevalier
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <fcntl.h>
#include <unistd.h>
#include "fd-util.h"
#include "fdset.h"
#include "fileio.h"
#include "macro.h"
#include "util.h"
static void test_fdset_new_fill(void) {
}
static void test_fdset_put_dup(void) {
}
static void test_fdset_cloexec(void) {
}
static void test_fdset_close_others(void) {
}
static void test_fdset_remove(void) {
}
static void test_fdset_iterate(void) {
Iterator i;
int c = 0;
int a;
c++;
}
assert_se(c == 1);
}
static void test_fdset_isempty(void) {
int fd;
}
static void test_fdset_steal_first(void) {
int fd;
}
static void test_fdset_new_array(void) {
}
return 0;
}