mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-22 21:32:31 +00:00
Add glob and some finer tuning of documentation
This commit is contained in:
parent
799e24a87b
commit
d51409ccd9
77 changed files with 1321 additions and 736 deletions
|
@ -41,6 +41,7 @@ TEST(SUITE(sprintf), testCharacterCounting) {
|
|||
TEST(SUITE(snprintf), testTableFlip) {
|
||||
EXPECT_STREQ("Table flip ", Format("%-20ls", L"Table flip"));
|
||||
EXPECT_STREQ("(╯°□°)╯︵ ┻━┻ ", Format("%-20ls", L"(╯°□°)╯︵ ┻━┻"));
|
||||
EXPECT_STREQ("(╯°□°)╯︵ ┻━┻ ", Format("%-20hs", u"(╯°□°)╯︵ ┻━┻"));
|
||||
EXPECT_STREQ("ちゃぶ台返し ", Format("%-20ls", L"ちゃぶ台返し"));
|
||||
EXPECT_STREQ(" (╯°□°)╯︵ ┻━┻", Format("%20ls", L"(╯°□°)╯︵ ┻━┻"));
|
||||
EXPECT_STREQ(" ちゃぶ台返し", Format("%20ls", L"ちゃぶ台返し"));
|
||||
|
|
|
@ -27,8 +27,8 @@
|
|||
*
|
||||
* It is demonstrated that our 3.5kb x86 parser supports all legal x86
|
||||
* instruction set architectures and addressing modes since the 1970's,
|
||||
* including the really complicated ones, e.g. avx512; or the unpopular
|
||||
* ones, e.g. amd 3dnow.
|
||||
* including the really sophisticated ones, e.g. avx512, as well as the
|
||||
* less popular ones, e.g. 3dnow.
|
||||
*/
|
||||
|
||||
TEST(x86ild, testSomeThingsNeverChange) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue