blob: 1e9779476f6172cb862d1115d84dfc3e7cd12609 [file] [log] [blame] [edit]
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (c) International Business Machines Corp., 2001
* Copyright (c) 2012-2016 Cyril Hrubis <[email protected]>
*/
/*
* Testcase to check creat(2) sets ETXTBSY correctly.
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <fcntl.h>
#include "tst_test.h"
#define TEST_APP "creat07_child"
static void verify_creat(void)
{
pid_t pid;
pid = SAFE_FORK();
if (pid == 0) {
SAFE_EXECL(TEST_APP, TEST_APP, NULL);
exit(1);
}
TST_CHECKPOINT_WAIT(0);
TEST(creat(TEST_APP, O_WRONLY));
if (TST_RET != -1) {
tst_res(TFAIL, "creat() succeeded unexpectedly");
return;
}
if (TST_ERR == ETXTBSY)
tst_res(TPASS, "creat() received EXTBSY");
else
tst_res(TFAIL | TTERRNO, "creat() failed unexpectedly");
SAFE_KILL(pid, SIGKILL);
SAFE_WAITPID(pid, NULL, 0);
}
static const char *const resource_files[] = {
TEST_APP,
NULL,
};
static struct tst_test test = {
.test_all = verify_creat,
.needs_checkpoints = 1,
.forks_child = 1,
.resource_files = resource_files,
};