mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-08-14 01:39:59 +00:00
tests: fix include statements
Signed-off-by: Christian Brauner (Microsoft) <christian.brauner@ubuntu.com>
This commit is contained in:
parent
c8f5432d54
commit
44c22b8a95
@ -254,13 +254,13 @@ void test_lxc_safe_uint(void)
|
||||
lxc_test_assert_abort((-EINVAL == lxc_safe_uint("-123", &n)));
|
||||
|
||||
ret = snprintf(numstr, sizeof(numstr), "%" PRIu64, (uint64_t)UINT_MAX);
|
||||
if (ret < 0 || ret >= sizeof(numstr))
|
||||
if (ret < 0 || (size_t)ret >= sizeof(numstr))
|
||||
exit(EXIT_FAILURE);
|
||||
|
||||
lxc_test_assert_abort((0 == lxc_safe_uint(numstr, &n)) && n == UINT_MAX);
|
||||
|
||||
ret = snprintf(numstr, sizeof(numstr), "%" PRIu64, (uint64_t)UINT_MAX + 1);
|
||||
if (ret < 0 || ret >= sizeof(numstr))
|
||||
if (ret < 0 || (size_t)ret >= sizeof(numstr))
|
||||
exit(EXIT_FAILURE);
|
||||
|
||||
lxc_test_assert_abort((-ERANGE == lxc_safe_uint(numstr, &n)));
|
||||
@ -287,25 +287,25 @@ void test_lxc_safe_int(void)
|
||||
char numstr[INTTYPE_TO_STRLEN(uint64_t)];
|
||||
|
||||
ret = snprintf(numstr, sizeof(numstr), "%" PRIu64, (uint64_t)INT_MAX);
|
||||
if (ret < 0 || ret >= sizeof(numstr))
|
||||
if (ret < 0 || (size_t)ret >= sizeof(numstr))
|
||||
exit(EXIT_FAILURE);
|
||||
|
||||
lxc_test_assert_abort((0 == lxc_safe_int(numstr, &n)) && n == INT_MAX);
|
||||
|
||||
ret = snprintf(numstr, sizeof(numstr), "%" PRIu64, (uint64_t)INT_MAX + 1);
|
||||
if (ret < 0 || ret >= sizeof(numstr))
|
||||
if (ret < 0 || (size_t)ret >= sizeof(numstr))
|
||||
exit(EXIT_FAILURE);
|
||||
|
||||
lxc_test_assert_abort((-ERANGE == lxc_safe_int(numstr, &n)));
|
||||
|
||||
ret = snprintf(numstr, sizeof(numstr), "%" PRId64, (int64_t)INT_MIN);
|
||||
if (ret < 0 || ret >= sizeof(numstr))
|
||||
if (ret < 0 || (size_t)ret >= sizeof(numstr))
|
||||
exit(EXIT_FAILURE);
|
||||
|
||||
lxc_test_assert_abort((0 == lxc_safe_int(numstr, &n)) && n == INT_MIN);
|
||||
|
||||
ret = snprintf(numstr, sizeof(numstr), "%" PRId64, (int64_t)INT_MIN - 1);
|
||||
if (ret < 0 || ret >= sizeof(numstr))
|
||||
if (ret < 0 || (size_t)ret >= sizeof(numstr))
|
||||
exit(EXIT_FAILURE);
|
||||
|
||||
lxc_test_assert_abort((-ERANGE == lxc_safe_int(numstr, &n)));
|
||||
@ -551,7 +551,7 @@ void test_task_blocks_signal(void)
|
||||
|
||||
sigemptyset(&mask);
|
||||
|
||||
for (i = 0; i < (sizeof(signals) / sizeof(signals[0])); i++) {
|
||||
for (i = 0; (size_t)i < (sizeof(signals) / sizeof(signals[0])); i++) {
|
||||
ret = sigaddset(&mask, signals[i]);
|
||||
if (ret < 0)
|
||||
_exit(EXIT_FAILURE);
|
||||
@ -563,7 +563,7 @@ void test_task_blocks_signal(void)
|
||||
_exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
for (i = 0; i < (sizeof(signals) / sizeof(signals[0])); i++) {
|
||||
for (i = 0; (size_t)i < (sizeof(signals) / sizeof(signals[0])); i++) {
|
||||
if (!task_blocks_signal(getpid(), signals[i])) {
|
||||
lxc_error("Failed to detect blocked signal "
|
||||
"(idx = %d, signal number = %d)\n",
|
||||
|
@ -23,7 +23,6 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <lxc/lxccontainer.h>
|
||||
#include <lxc/list.h>
|
||||
#include <string.h>
|
||||
#include <sys/mount.h>
|
||||
#include <sys/stat.h>
|
||||
@ -32,6 +31,7 @@
|
||||
|
||||
#include "config.h"
|
||||
#include "lxctest.h"
|
||||
#include "list.h"
|
||||
#include "utils.h"
|
||||
|
||||
#define NAME "mount_injection_test-"
|
||||
|
@ -33,7 +33,7 @@
|
||||
|
||||
#include "conf.h"
|
||||
#include "confile_utils.h"
|
||||
#include "lxc/state.h"
|
||||
#include "state.h"
|
||||
#include "lxctest.h"
|
||||
#include "utils.h"
|
||||
|
||||
|
@ -30,7 +30,7 @@
|
||||
#include <sys/types.h>
|
||||
#include <sys/wait.h>
|
||||
|
||||
#include "lxc/namespace.h"
|
||||
#include "namespace.h"
|
||||
|
||||
#include <sched.h>
|
||||
#include <linux/sched.h>
|
||||
|
@ -288,7 +288,7 @@ int main(int argc, char *argv[])
|
||||
|
||||
lxc_debug("Starting namespace sharing test iteration %d\n", j);
|
||||
|
||||
for (i = 0; i < nthreads; i++) {
|
||||
for (i = 0; (size_t)i < nthreads; i++) {
|
||||
memset(&args[i], 0, sizeof(struct thread_args));
|
||||
memset(&threads[i], 0, sizeof(pthread_t));
|
||||
|
||||
@ -303,7 +303,7 @@ int main(int argc, char *argv[])
|
||||
goto on_error_stop;
|
||||
}
|
||||
|
||||
for (i = 0; i < nthreads; i++) {
|
||||
for (i = 0; (size_t)i < nthreads; i++) {
|
||||
ret = pthread_join(threads[i], NULL);
|
||||
if (ret != 0)
|
||||
goto on_error_stop;
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <sys/stat.h>
|
||||
#include "lxc/lxc.h"
|
||||
#include "lxc.h"
|
||||
|
||||
#define MYNAME "snapxxx1"
|
||||
#define MYNAME2 "snapxxx3"
|
||||
|
Loading…
Reference in New Issue
Block a user