mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-27 06:48:31 +00:00
Make minor improvements
This commit is contained in:
parent
04caf6f9ad
commit
95b142e4e5
95 changed files with 3818 additions and 2760 deletions
41
test/libc/str/bsr_test.c
Normal file
41
test/libc/str/bsr_test.c
Normal file
|
@ -0,0 +1,41 @@
|
|||
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
||||
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
|
||||
╞══════════════════════════════════════════════════════════════════════════════╡
|
||||
│ Copyright 2020 Justine Alexandra Roberts Tunney │
|
||||
│ │
|
||||
│ This program is free software; you can redistribute it and/or modify │
|
||||
│ it under the terms of the GNU General Public License as published by │
|
||||
│ the Free Software Foundation; version 2 of the License. │
|
||||
│ │
|
||||
│ This program 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 │
|
||||
│ General Public License for more details. │
|
||||
│ │
|
||||
│ You should have received a copy of the GNU General Public License │
|
||||
│ along with this program; if not, write to the Free Software │
|
||||
│ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA │
|
||||
│ 02110-1301 USA │
|
||||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||
#include "libc/nexgen32e/bsr.h"
|
||||
#include "libc/str/str.h"
|
||||
#include "libc/testlib/testlib.h"
|
||||
|
||||
static unsigned Bsr(unsigned x) {
|
||||
static const char kDebruijn[32] = {
|
||||
0, 9, 1, 10, 13, 21, 2, 29, 11, 14, 16, 18, 22, 25, 3, 30,
|
||||
8, 12, 20, 28, 15, 17, 24, 7, 19, 27, 23, 6, 26, 5, 4, 31,
|
||||
};
|
||||
x |= x >> 1;
|
||||
x |= x >> 2;
|
||||
x |= x >> 4;
|
||||
x |= x >> 8;
|
||||
x |= x >> 16;
|
||||
x *= 0x07c4acdd;
|
||||
x >>= 27;
|
||||
return kDebruijn[x];
|
||||
}
|
||||
|
||||
TEST(bsr, test) {
|
||||
ASSERT_EQ(bsr(0xffffffff), Bsr(0xffffffff));
|
||||
}
|
|
@ -71,11 +71,15 @@ TEST(strnlen, testconst) {
|
|||
}
|
||||
|
||||
TEST(strlen, testnonconst) {
|
||||
/* this test case is a great example of why we need:
|
||||
"m"(*(char(*)[0x7fffffff])StR)
|
||||
rather than:
|
||||
"m"(*StR) */
|
||||
char buf[256];
|
||||
unsigned i;
|
||||
for (i = 0; i < 255; ++i) buf[i] = i + 1;
|
||||
for (i = 0; i < 250; ++i) buf[i] = i + 1;
|
||||
buf[i] = '\0';
|
||||
ASSERT_EQ(255, strlen(buf));
|
||||
ASSERT_EQ(250, strlen(buf));
|
||||
}
|
||||
|
||||
TEST(strnlen_s, null_ReturnsZero) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue