Home
last modified time | relevance | path

Searched refs:Run (Results 1 – 25 of 27) sorted by relevance

12

/bionic/tests/
Ddl_test.cpp113 eth.Run([&]() { execve(path_to_linker, eth.GetArgs(), eth.GetEnv()); }, 0, nullptr); in TEST()
129 eth.Run([&]() { execve(path_to_linker, eth.GetArgs(), eth.GetEnv()); }, 0, nullptr); in TEST()
146 eth.Run([&]() { execve(path_to_linker, eth.GetArgs(), eth.GetEnv()); }, 0, nullptr); in TEST()
157 …eth.Run([&]() { execve(path_to_linker, eth.GetArgs(), eth.GetEnv()); }, EXIT_FAILURE, error_messag… in TEST()
167 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, nullptr); in TEST()
177 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, nullptr); in TEST()
190 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, "12345"); in TEST()
206 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, "54321"); in TEST()
227 …eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, EXIT_FAILURE, error_messag… in TEST()
284 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, in TEST()
[all …]
Dmemtag_stack_dlopen_test.cpp53 eth.Run([&]() { execve(path.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, "RAN"); in TEST()
71 eth.Run([&]() { execve(path.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, "RAN"); in TEST()
92 eth.Run([&]() { execve(path.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, "RAN"); in TEST()
113 eth.Run([&]() { execve(path.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, "RAN"); in TEST()
Dsyslog_test.cpp41 eth.Run( in TEST()
54 eth.Run( in TEST()
67 eth.Run( in TEST()
Dsys_thread_properties_test.cpp29 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, expected_out); in TEST()
40 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, expected_out); in TEST()
Delftls_test.cpp98 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, nullptr); in TEST()
105 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, nullptr); in TEST()
Dutils.cpp46 eh.Run([&]() { execve(exec.c_str(), eh.GetArgs(), eh.GetEnv()); }, in RunGwpAsanTest()
58 eh.Run([&]() { execve(exec.c_str(), eh.GetArgs(), eh.GetEnv()); }, in RunSubtestNoEnv()
Dcfi_test.cpp166 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, nullptr); in TEST()
177 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, nullptr); in TEST()
Dunistd_test.cpp1440 eth.Run([&]() { execve(BIN_DIR "echo", eth.GetArgs(), eth.GetEnv()); }, 0, "hello world\n"); in TEST()
1449 eth.Run([&]() { execve(BIN_DIR "printenv", eth.GetArgs(), eth.GetEnv()); }, 0, in TEST()
1462 eth.Run([&]() { execl(BIN_DIR "echo", "echo", "hello", "world", nullptr); }, 0, "hello world\n"); in TEST()
1480 eth.Run([&]() { execle(BIN_DIR "printenv", "printenv", nullptr, eth.GetEnv()); }, 0, in TEST()
1495 eth.Run([&]() { execv(BIN_DIR "echo", eth.GetArgs()); }, 0, "hello world\n"); in TEST()
1507 eth.Run([&]() { execlp("echo", "echo", "hello", "world", nullptr); }, 0, "hello world\n"); in TEST()
1522 eth.Run([&]() { execvp("echo", eth.GetArgs()); }, 0, "hello world\n"); in TEST()
1539 eth.Run([&]() { execvpe("echo", eth.GetArgs(), eth.GetEnv()); }, 0, "hello world\n"); in TEST()
1548 eth.Run([&]() { execvpe("printenv", eth.GetArgs(), eth.GetEnv()); }, 0, expected_output.c_str()); in TEST()
1577 eth.Run([&]() { execvpe(basename(tf.path), eth.GetArgs(), eth.GetEnv()); }, 0, "script\n"); in TEST()
[all …]
Dmemtag_stack_test.cpp40 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, ""); in TEST_P()
Delftls_dl_test.cpp85 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, error.c_str()); in TEST()
175 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, nullptr); in TEST()
Dheap_tagging_level_test.cpp253 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, in TEST_P()
Dutils.h225 void Run(const std::function<void()>& child_fn, int expected_exit_status, in Run() function
DAndroid.bp1009 // Tests for the device using bionic's .so. Run with:
1187 // Tests for the device linked against bionic's static library. Run with:
1249 // Tests to run on the host and linked against glibc. Run with:
Dstdio_test.cpp2645 eth.Run([&]() { errno = EINVAL; perror("a b c"); exit(0); }, 0, "a b c: Invalid argument\n"); in TEST()
2646 eth.Run([&]() { errno = EINVAL; perror(nullptr); exit(0); }, 0, "Invalid argument\n"); in TEST()
2647 eth.Run([&]() { errno = EINVAL; perror(""); exit(0); }, 0, "Invalid argument\n"); in TEST()
2652 eth.Run([&]() { exit(puts("a b c")); }, 0, "a b c\n"); in TEST()
2657 eth.Run([&]() { exit(putchar('A')); }, 65, "A"); in TEST()
2662 eth.Run([&]() { exit(putchar('B')); }, 66, "B"); in TEST()
Ddlfcn_test.cpp1543 eth.Run([&]() { execvpe("readelf", eth.GetArgs(), eth.GetEnv()); }, 0, nullptr); in validate_compatibility_of_native_library()
/bionic/benchmarks/linker_relocation/
Drun_bench_with_ninja.sh38 Run config:
40 --linker LINKER Run the benchmark using a specific dynamic linker
41 --adb Run the test using adb
/bionic/benchmarks/
DAndroid.bp95 // Build benchmarks for the device (with bionic's .so). Run with:
125 // Build benchmarks for the host (against glibc!). Run with:
DREADME.md86 (e.g. Toybox's `true` and `sh -c true`). Run it on a device like so:
/bionic/docs/
Dlibc_assembler.md77 Run on (8 X 1844 MHz CPU s)
124 Run the bionic tests to verify that the new routines are valid. However,
Dnative_allocator.md121 Run this test thusly:
337 Run the benchmark thusly:
405 Run these benchmarks thusly:
Dstatus.md51 Run `./libc/tools/check-symbols-glibc.py` in bionic/ for the current
/bionic/libc/malloc_hooks/tests/
Dmalloc_hooks_tests.cpp145 test.Run( in RunTest()
/bionic/libc/kernel/
DREADME.md99 Run this command to automatically download the latest version of the headers
/bionic/libc/malloc_debug/
DREADME.md223 Run: 'kill -48 <PID>' to check for unreachable memory.
495 add the verbose option. All of the "Run XXX" messages are also silenced unless
499 …09-10 01:03:50.070 557 557 I malloc_debug: /system/bin/audioserver: Run: 'kill -47 557' to dum…
755 Run:
/bionic/
DREADME.md308 2. Run update_all.py to scrub those headers and import them into bionic.

12