1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
/**
* Copyright (c) NVIDIA CORPORATION & AFFILIATES, 2001-2019. ALL RIGHTS RESERVED.
*
* See file LICENSE for terms.
*/
#include <common/test.h>
extern "C" {
#include <ucs/sys/module.h>
#include <ucs/sys/sys.h>
#include <ucs/sys/sock.h>
#include <ucs/type/spinlock.h>
#include <ucs/time/time.h>
#include <ucs/arch/cpu.h>
}
#include <sys/mman.h>
#include <set>
class test_sys : public ucs::test {
protected:
static int get_mem_prot(void *address, size_t size) {
return ucs_get_mem_prot((uintptr_t)address, (uintptr_t)address + size);
}
void test_dirname(char *path, int num_layers, const char *expected) {
path = ucs_dirname(path, num_layers);
EXPECT_EQ(std::string(expected), path);
}
void test_memunits(size_t size, const char *expected) {
char buf[256];
ucs_memunits_to_str(size, buf, sizeof(buf));
EXPECT_EQ(std::string(expected), buf);
}
static void check_cache_type(ucs_cpu_cache_type_t type, const char *name)
{
size_t cache;
char memunits[32];
cache = ucs_cpu_get_cache_size(type);
ucs_memunits_to_str(cache, memunits, sizeof(memunits));
UCS_TEST_MESSAGE << name << " cache: " << memunits;
}
};
UCS_TEST_F(test_sys, uuid) {
std::set<uint64_t> uuids;
for (unsigned i = 0; i < 10000; ++i) {
uint64_t uuid = ucs_generate_uuid(0);
std::pair<std::set<uint64_t>::iterator, bool> ret = uuids.insert(uuid);
ASSERT_TRUE(ret.second);
}
}
UCS_TEST_F(test_sys, machine_guid) {
uint64_t guid1 = ucs_machine_guid();
uint64_t guid2 = ucs_machine_guid();
EXPECT_EQ(guid1, guid2);
}
UCS_TEST_F(test_sys, spinlock) {
ucs_recursive_spinlock_t lock;
pthread_t self;
self = pthread_self();
ucs_recursive_spinlock_init(&lock, 0);
ucs_recursive_spin_lock(&lock);
EXPECT_TRUE(ucs_recursive_spin_is_owner(&lock, self));
/* coverity[double_lock] */
ucs_recursive_spin_lock(&lock);
EXPECT_TRUE(ucs_recursive_spin_is_owner(&lock, self));
ucs_recursive_spin_unlock(&lock);
EXPECT_TRUE(ucs_recursive_spin_is_owner(&lock, self));
/* coverity[double_unlock] */
ucs_recursive_spin_unlock(&lock);
EXPECT_FALSE(ucs_recursive_spin_is_owner(&lock, self));
}
UCS_TEST_F(test_sys, get_mem_prot) {
int x;
ASSERT_TRUE( get_mem_prot(&x, sizeof(x)) & PROT_READ );
ASSERT_TRUE( get_mem_prot(&x, sizeof(x)) & PROT_WRITE );
ASSERT_TRUE( get_mem_prot((void*)&get_mem_prot, 1) & PROT_EXEC );
ucs_time_t start_time = ucs_get_time();
get_mem_prot(&x, sizeof(x));
ucs_time_t duration = ucs_get_time() - start_time;
UCS_TEST_MESSAGE << "Time: " << ucs_time_to_usec(duration) << " us";
}
UCS_TEST_F(test_sys, fcntl) {
ucs_status_t status;
int fd, fl;
fd = open("/dev/null", O_RDONLY);
if (fd < 0) {
FAIL();
}
/* Add */
status = ucs_sys_fcntl_modfl(fd, O_NONBLOCK, 0);
EXPECT_TRUE(status == UCS_OK);
fl = fcntl(fd, F_GETFL);
EXPECT_GE(fl, 0);
EXPECT_TRUE(fl & O_NONBLOCK);
/* Remove */
status = ucs_sys_fcntl_modfl(fd, 0, O_NONBLOCK);
EXPECT_TRUE(status == UCS_OK);
fl = fcntl(fd, F_GETFL);
EXPECT_GE(fl, 0);
EXPECT_FALSE(fl & O_NONBLOCK);
close(fd);
}
UCS_TEST_F(test_sys, memory) {
size_t phys_size = ucs_get_phys_mem_size();
UCS_TEST_MESSAGE << "Physical memory size: " << ucs::size_value(phys_size);
EXPECT_GT(phys_size, 1ul * 1024 * 1024);
}
extern "C" {
int test_module_loaded = 0;
}
UCS_TEST_F(test_sys, module) {
UCS_MODULE_FRAMEWORK_DECLARE(test);
EXPECT_EQ(0, test_module_loaded);
UCS_MODULE_FRAMEWORK_LOAD(test, 0);
EXPECT_EQ(1, test_module_loaded);
}
UCS_TEST_F(test_sys, dirname) {
char path[] = "/sys/devices/pci0000:00/0000:00:00.0";
test_dirname(path, 3, "/sys");
}
UCS_TEST_F(test_sys, memunits_to_str) {
test_memunits(256, "256");
test_memunits(1256, "1256");
test_memunits(UCS_KBYTE, "1K");
test_memunits(UCS_MBYTE + UCS_KBYTE, "1025K");
test_memunits(UCS_GBYTE, "1G");
test_memunits(2 * UCS_GBYTE, "2G");
test_memunits(UCS_TBYTE, "1T");
test_memunits(UCS_TBYTE * 1024, "1P");
}
UCS_TEST_F(test_sys, cpu_cache) {
check_cache_type(UCS_CPU_CACHE_L1d, "L1d");
check_cache_type(UCS_CPU_CACHE_L1i, "L1i");
check_cache_type(UCS_CPU_CACHE_L2, "L2");
check_cache_type(UCS_CPU_CACHE_L3, "L3");
}
|