mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-28 08:12:28 +00:00
Fix small matters and improve sysconf()
- Fix mkdeps.com out of memory error - Remove static memory from __get_cpu_count() - Add support for passing hyphen to cat in cocmd - Change more ZipOS errors from ENOTSUP to EROFS - Specify mem_unit in sysinfo() output on BSD OSes
This commit is contained in:
parent
eebc24b9cd
commit
3a9cac4892
55 changed files with 411 additions and 262 deletions
|
@ -51,7 +51,7 @@ TEST(sched_getaffinity, firstOnly) {
|
|||
}
|
||||
|
||||
TEST(sched_getaffinity, secondOnly) {
|
||||
if (_getcpucount() < 2) return;
|
||||
if (__get_cpu_count() < 2) return;
|
||||
cpu_set_t x, y;
|
||||
CPU_ZERO(&x);
|
||||
CPU_SET(1, &x);
|
||||
|
|
|
@ -17,11 +17,14 @@
|
|||
│ PERFORMANCE OF THIS SOFTWARE. │
|
||||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||
#include "libc/mem/critbit0.h"
|
||||
#include "libc/fmt/itoa.h"
|
||||
#include "libc/intrin/bits.h"
|
||||
#include "libc/mem/critbit0.h"
|
||||
#include "libc/mem/mem.h"
|
||||
#include "libc/runtime/runtime.h"
|
||||
#include "libc/stdio/rand.h"
|
||||
#include "libc/str/str.h"
|
||||
#include "libc/testlib/ezbench.h"
|
||||
#include "libc/testlib/testlib.h"
|
||||
|
||||
struct Bog {
|
||||
|
@ -143,3 +146,26 @@ TEST(critbit0, manual_clear) {
|
|||
ASSERT_TRUE(critbit0_delete(&tree, "hi"));
|
||||
ASSERT_EQ(NULL, tree.root);
|
||||
}
|
||||
|
||||
#define N 500
|
||||
|
||||
char words[N][16];
|
||||
|
||||
void GenerateWords(void) {
|
||||
for (int i = 0; i < N; ++i) {
|
||||
FormatInt32(words[i], rand());
|
||||
}
|
||||
}
|
||||
|
||||
void BuildTree(void) {
|
||||
struct critbit0 tree = {0};
|
||||
for (int i = 0; i < N; ++i) {
|
||||
critbit0_insert(&tree, words[i]);
|
||||
}
|
||||
critbit0_clear(&tree);
|
||||
}
|
||||
|
||||
BENCH(critbit0, bench) {
|
||||
GenerateWords();
|
||||
EZBENCH2("critbit0", donothing, BuildTree());
|
||||
}
|
||||
|
|
|
@ -214,7 +214,7 @@ void *Worker(void *arg) {
|
|||
}
|
||||
|
||||
BENCH(malloc, torture) {
|
||||
int i, n = _getcpucount() * 2;
|
||||
int i, n = __get_cpu_count() * 2;
|
||||
pthread_t *t = _gc(malloc(sizeof(pthread_t) * n));
|
||||
if (!n) return;
|
||||
printf("\nmalloc torture test w/ %d threads and %d iterations\n", n,
|
||||
|
|
|
@ -79,7 +79,7 @@ TEST(popen, semicolon) {
|
|||
|
||||
TEST(popen, singleQuotes) {
|
||||
setenv("there", "a b c", true);
|
||||
ASSERT_NE(NULL, (f = popen("echo -l 'hello $there' yo", "r")));
|
||||
ASSERT_NE(NULL, (f = popen("echo 'hello $there'; echo yo", "r")));
|
||||
ASSERT_STREQ("hello $there\n", fgets(buf, sizeof(buf), f));
|
||||
ASSERT_STREQ("yo\n", fgets(buf, sizeof(buf), f));
|
||||
ASSERT_EQ(0, pclose(f));
|
||||
|
@ -88,7 +88,7 @@ TEST(popen, singleQuotes) {
|
|||
|
||||
TEST(popen, doubleQuotes) {
|
||||
setenv("hello", "a b c", true);
|
||||
ASSERT_NE(NULL, (f = popen("echo -l \"$hello there\"", "r")));
|
||||
ASSERT_NE(NULL, (f = popen("echo \"$hello there\"", "r")));
|
||||
ASSERT_STREQ("a b c there\n", fgets(buf, sizeof(buf), f));
|
||||
ASSERT_EQ(0, pclose(f));
|
||||
CheckForFdLeaks();
|
||||
|
@ -96,7 +96,7 @@ TEST(popen, doubleQuotes) {
|
|||
|
||||
TEST(popen, quoteless) {
|
||||
setenv("there", "a b c", true);
|
||||
ASSERT_NE(NULL, (f = popen("echo -l hello a$there yo", "r")));
|
||||
ASSERT_NE(NULL, (f = popen("echo hello; echo a$there; echo yo", "r")));
|
||||
ASSERT_STREQ("hello\n", fgets(buf, sizeof(buf), f));
|
||||
ASSERT_STREQ("aa b c\n", fgets(buf, sizeof(buf), f)); // mixed feelings
|
||||
ASSERT_STREQ("yo\n", fgets(buf, sizeof(buf), f));
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
#include "libc/paths.h"
|
||||
#include "libc/runtime/runtime.h"
|
||||
#include "libc/stdio/stdio.h"
|
||||
#include "libc/str/str.h"
|
||||
#include "libc/sysv/consts/o.h"
|
||||
#include "libc/sysv/consts/sig.h"
|
||||
#include "libc/testlib/ezbench.h"
|
||||
|
@ -45,6 +46,22 @@ void SetUp(void) {
|
|||
}
|
||||
}
|
||||
|
||||
int pipefd[2];
|
||||
int stdoutBack;
|
||||
|
||||
void CaptureStdout(void) {
|
||||
ASSERT_NE(-1, (stdoutBack = dup(1)));
|
||||
ASSERT_SYS(0, 0, pipe(pipefd));
|
||||
ASSERT_NE(-1, dup2(pipefd[1], 1));
|
||||
}
|
||||
|
||||
void RestoreStdout(void) {
|
||||
ASSERT_SYS(0, 1, dup2(stdoutBack, 1));
|
||||
ASSERT_SYS(0, 0, close(stdoutBack));
|
||||
ASSERT_SYS(0, 0, close(pipefd[1]));
|
||||
ASSERT_SYS(0, 0, close(pipefd[0]));
|
||||
}
|
||||
|
||||
TEST(system, haveShell) {
|
||||
ASSERT_TRUE(system(0));
|
||||
}
|
||||
|
@ -71,20 +88,14 @@ TEST(system, testStdoutRedirect_withSpacesInFilename) {
|
|||
}
|
||||
|
||||
TEST(system, testStderrRedirect_toStdout) {
|
||||
if (IsAsan()) return; // TODO(jart): fix me
|
||||
int pipefd[2];
|
||||
int stdoutBack = dup(1);
|
||||
ASSERT_NE(-1, stdoutBack);
|
||||
ASSERT_EQ(0, pipe(pipefd));
|
||||
ASSERT_NE(-1, dup2(pipefd[1], 1));
|
||||
CaptureStdout();
|
||||
int stderrBack = dup(2);
|
||||
ASSERT_NE(-1, stderrBack);
|
||||
char buf[5] = {0};
|
||||
|
||||
ASSERT_NE(-1, dup2(1, 2));
|
||||
bool success = false;
|
||||
if (WEXITSTATUS(system("echo aaa 2>&1")) == 0) {
|
||||
success = read(pipefd[0], buf, sizeof(buf) - 1) == (sizeof(buf) - 1);
|
||||
success = read(pipefd[0], buf, 4) == (4);
|
||||
}
|
||||
ASSERT_NE(-1, dup2(stderrBack, 2));
|
||||
ASSERT_EQ(true, success);
|
||||
|
@ -97,15 +108,12 @@ TEST(system, testStderrRedirect_toStdout) {
|
|||
ASSERT_NE(-1, dup2(1, 2));
|
||||
success = false;
|
||||
if (WEXITSTATUS(system("./echo.com aaa 2>&1")) == 0) {
|
||||
success = read(pipefd[0], buf, sizeof(buf) - 1) == (sizeof(buf) - 1);
|
||||
success = read(pipefd[0], buf, 4) == (4);
|
||||
}
|
||||
ASSERT_NE(-1, dup2(stderrBack, 2));
|
||||
ASSERT_EQ(true, success);
|
||||
ASSERT_STREQ("aaa\n", buf);
|
||||
|
||||
ASSERT_NE(-1, dup2(stdoutBack, 1));
|
||||
ASSERT_EQ(0, close(pipefd[1]));
|
||||
ASSERT_EQ(0, close(pipefd[0]));
|
||||
RestoreStdout();
|
||||
}
|
||||
|
||||
TEST(system, and) {
|
||||
|
@ -168,49 +176,43 @@ TEST(system, exitStatusPreservedAfterSemiColon) {
|
|||
ASSERT_EQ(1, WEXITSTATUS(system("false; ")));
|
||||
ASSERT_EQ(1, WEXITSTATUS(system("./false.com;")));
|
||||
ASSERT_EQ(1, WEXITSTATUS(system("./false.com;")));
|
||||
int pipefd[2];
|
||||
int stdoutBack = dup(1);
|
||||
ASSERT_NE(-1, stdoutBack);
|
||||
ASSERT_EQ(0, pipe(pipefd));
|
||||
ASSERT_NE(-1, dup2(pipefd[1], 1));
|
||||
CaptureStdout();
|
||||
ASSERT_EQ(0, WEXITSTATUS(system("false; echo $?")));
|
||||
char buf[3] = {0};
|
||||
ASSERT_EQ(2, read(pipefd[0], buf, 2));
|
||||
char buf[9] = {0};
|
||||
ASSERT_EQ(2, read(pipefd[0], buf, 8));
|
||||
ASSERT_STREQ("1\n", buf);
|
||||
ASSERT_EQ(0, WEXITSTATUS(system("./false.com; echo $?")));
|
||||
buf[0] = 0;
|
||||
buf[1] = 0;
|
||||
ASSERT_EQ(2, read(pipefd[0], buf, 2));
|
||||
ASSERT_EQ(2, read(pipefd[0], buf, 8));
|
||||
ASSERT_STREQ("1\n", buf);
|
||||
ASSERT_NE(-1, dup2(stdoutBack, 1));
|
||||
ASSERT_EQ(0, close(pipefd[1]));
|
||||
ASSERT_EQ(0, close(pipefd[0]));
|
||||
ASSERT_EQ(0, WEXITSTATUS(system("echo -n hi")));
|
||||
EXPECT_EQ(2, read(pipefd[0], buf, 8));
|
||||
ASSERT_STREQ("hi", buf);
|
||||
RestoreStdout();
|
||||
}
|
||||
|
||||
TEST(system, globio) {
|
||||
char buf[9] = {0};
|
||||
CaptureStdout();
|
||||
ASSERT_SYS(0, 0, touch("a", 0644));
|
||||
ASSERT_SYS(0, 0, touch("b", 0644));
|
||||
ASSERT_EQ(0, WEXITSTATUS(system("echo *")));
|
||||
EXPECT_EQ(4, read(pipefd[0], buf, 8));
|
||||
ASSERT_STREQ("a b\n", buf);
|
||||
RestoreStdout();
|
||||
}
|
||||
|
||||
TEST(system, allowsLoneCloseCurlyBrace) {
|
||||
int pipefd[2];
|
||||
int stdoutBack = dup(1);
|
||||
ASSERT_NE(-1, stdoutBack);
|
||||
ASSERT_EQ(0, pipe(pipefd));
|
||||
ASSERT_NE(-1, dup2(pipefd[1], 1));
|
||||
CaptureStdout();
|
||||
char buf[6] = {0};
|
||||
|
||||
ASSERT_EQ(0, WEXITSTATUS(system("echo \"aaa\"}")));
|
||||
ASSERT_EQ(sizeof(buf) - 1, read(pipefd[0], buf, sizeof(buf) - 1));
|
||||
ASSERT_EQ(5, read(pipefd[0], buf, 5));
|
||||
ASSERT_STREQ("aaa}\n", buf);
|
||||
buf[0] = 0;
|
||||
buf[1] = 0;
|
||||
buf[2] = 0;
|
||||
buf[3] = 0;
|
||||
buf[4] = 0;
|
||||
bzero(buf, 6);
|
||||
testlib_extract("/zip/echo.com", "echo.com", 0755);
|
||||
ASSERT_EQ(0, WEXITSTATUS(system("./echo.com \"aaa\"}")));
|
||||
ASSERT_EQ(sizeof(buf) - 1, read(pipefd[0], buf, sizeof(buf) - 1));
|
||||
ASSERT_EQ(5, read(pipefd[0], buf, 5));
|
||||
ASSERT_STREQ("aaa}\n", buf);
|
||||
|
||||
ASSERT_NE(-1, dup2(stdoutBack, 1));
|
||||
ASSERT_EQ(0, close(pipefd[1]));
|
||||
ASSERT_EQ(0, close(pipefd[0]));
|
||||
RestoreStdout();
|
||||
}
|
||||
|
||||
TEST(system, glob) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue