| /xnu-11215/tools/tests/superpages/ |
| H A D | measure_tlbs.c | 26 unsigned int run, p, p2, i, res; in testt() local 49 for (run = 0; run < RUNS0; run++) { in testt() 51 data[p * PAGE_SIZE] = run & 0xFF; in testt() 55 for (run = 0; run < RUNS0; run++) { in testt() 64 for (run = 0; run < RUNS1 / PAGE_SIZE; run++) { in testt() 66 data[i] = run & 0xFF; in testt() 70 for (run = 0; run < RUNS1 / PAGE_SIZE; run++) { in testt() 83 for (run = 0; run < RUNS2 * pages; run++) { in testt() 88 data[p2 * NODE_SIZE + i] = run & 0xFF; in testt() 92 for (run = 0; run < RUNS2 * pages; run++) { in testt()
|
| /xnu-11215/tools/tests/execperf/ |
| H A D | Makefile | 15 printexecinfo run test 16 OBJECTS = exit-asm.o exit.o printexecinfo.o run.o 45 $(OBJROOT)/run.o: run.c | OBJROOT 82 $(DSTROOT)/run: $(OBJROOT)/run.o 83 $(CC) -o $(SYMROOT)/run $< $(LDFLAGS) 84 $(DSYMUTIL) $(SYMROOT)/run 85 $(STRIP) -S -o $@ $(SYMROOT)/run
|
| H A D | test.sh | 8 RUN=run
|
| /xnu-11215/tests/ |
| H A D | pmap_stress.c | 76 int run = 1; variable 77 …SSERT_POSIX_SUCCESS(sysctlbyname("kern.pmap_iommu_disconnect_test", NULL, NULL, &run, sizeof(run)), 84 int run = 1; variable 85 T_ASSERT_POSIX_SUCCESS(sysctlbyname("kern.pmap_extended_test", NULL, NULL, &run, sizeof(run)),
|
| /xnu-11215/osfmk/tests/ |
| H A D | README.md | 3 The tests directories osfmk/tests and bsd/tests include set of tests that run in kernel at boot-tim… 8 …* Automatically skips tests that are designed to panic kernel for on-desk testing, but run in BATs… 9 * Does not require complete install on device to run. Just kernelcache is enough. 12 ## How to run kernel POST 20 ## How do I configure to run just test #8? 22 …you want to run your test #8 (say you are tweaking it to do more testing). Just set "```kernPOST_c… 24 -> kernPOST_config=1_3,5_9999 # skip test#4. Will run tests 1,2,3 and 5,6 and onwards. 48 …* And you are set. Use KERN_SUCCESS to report successful run and any other error for failure. Here… 78 * T_EXPECT will just report failure of that test case, but will continue to run further test code. 80 ## How do I run my tests in BATs? [all …]
|
| /xnu-11215/bsd/tests/ |
| H A D | pmap_test_sysctl.c | 110 unsigned int run = 0; in sysctl_test_pmap_iommu_disconnect() local 112 error = sysctl_io_number(req, 0, sizeof(run), &run, &changed); in sysctl_test_pmap_iommu_disconnect() 126 unsigned int run = 0; in sysctl_test_pmap_extended() local 128 error = sysctl_io_number(req, 0, sizeof(run), &run, &changed); in sysctl_test_pmap_extended()
|
| /xnu-11215/tools/tests/MPMMTest/ |
| H A D | README | 4 simply run make. A 32- and 64-bit version of each test will be generated by 5 default. Each test can be run without options: 14 variables with command line options--run './MPMMtest -h' for details.
|
| /xnu-11215/tools/tests/perf_index/ |
| H A D | README | 1 perf_index - This is a tool for gather performance data. perf_index can run in 7 these arguments. For example if run with the following arguments: 10 iperf will run the cpu workload on two threads with a total work load size of 24 for instructions. The server is run by running the test_controller.py python 28 and size to each of those clients, who will run the initialization code and 29 report back to the server. Once the initialization is run by every client, the 30 server will give the OK to every client to run the workload and begin timing.
|
| /xnu-11215/doc/debugging/ |
| H A D | macro_testing.md | 18 **LLDB** unit tests are run from LLDB's python interpreter. It is possible to 22 ## How to run tests 24 Standalone tests do not need LLDB and can be run with: 29 To run all tests (including LLDB based ones) a developer has to install
|
| H A D | debugging.md | 186 option. Then run `diff` on the outputs of the baseline and modified code: 194 * Some macros take a long time to run against a target (more than 30 minutes). Instead, a core dump 219 You can then run `coverage html --data-file=/tmp/coverage.cov` in your terminal 237 loading macros to check code run during bootstrapping. 239 For this, you'll need to run coverage manually: 255 Some macros can run for a long time. Some code may be costly even if it looks simple because objects 298 The easiest way to debug an exception is to re-run your macro with the `--debug` option. 304 To report an actionable radar, please use re-run your failing macro with `--radar`. 371 >>> pdb.run('m = macho.MemMacho(data, len(data))', globals(), locals()) 389 /Volumes/.../Python3.framework/Versions/3.8/lib/python3.8/bdb.py(580)run()
|
| /xnu-11215/bsd/miscfs/mockfs/ |
| H A D | mockfs_vnops.c | 367 size_t * run; in mockfs_blockmap() local 375 run = ap->a_run; in mockfs_blockmap() 396 *run = fsnode->size - foffset; in mockfs_blockmap() 398 if (ap->a_size > *run) { in mockfs_blockmap()
|
| /xnu-11215/tools/lldbmacros/tests/ |
| H A D | runtests.py | 99 runner.run(tests) 102 runner.run(tests)
|
| H A D | lldb_test_process.py | 191 runner.run(tests) 195 runner.run(tests)
|
| /xnu-11215/tools/lldbmacros/tests/lldbtest/ |
| H A D | testcase.py | 50 def run(self, result: unittest.TestResult) -> unittest.TestResult: member in LLDBTestCase 54 return super().run(result)
|
| /xnu-11215/doc/lifecycle/ |
| H A D | startup.md | 4 Adding code to run during early boot. 17 The subsystem module will basically run hooks in that order: 22 // run in no particular order for a given rank in the given subsystem 282 - Rank 1: Determine run-time support for exclaves
|
| /xnu-11215/tools/lldbmacros/ |
| H A D | usertaskgdbserver.py | 45 gbs.run()
|
| /xnu-11215/iokit/DriverKit/ |
| H A D | IOInterruptDispatchSource.iig | 58 * A driver can run code in response to an interrupt from a device, specified as an IOService 72 * @param queue Target queue to run the handler block. 105 * @brief Set the handler block to run when the interupt fires.
|
| /xnu-11215/tools/cocci/ |
| H A D | zalloc-data.cocci | 4 // This might need to be run several times
|
| H A D | zalloc-zero.cocci | 4 // This might need to be run several times
|
| H A D | zalloc-nofail.cocci | 4 // This might need to be run several times
|
| /xnu-11215/tests/vm/ |
| H A D | perf_madvise.lua | 52 for out in benchmark:run(args) do
|
| H A D | perf_compressor.lua | 74 for out in benchmark:run(args) do
|
| /xnu-11215/osfmk/kern/ |
| H A D | kcdata.modulemap | 9 // will run into all kinds of redeclaration sadness that the include guards
|
| /xnu-11215/libkern/zlib/ |
| H A D | deflate.c | 1710 uInt run; /* length of run */ 1729 run = 0; 1737 } while (++run < max); 1741 if (run >= MIN_MATCH) { 1742 check_match(s, s->strstart, s->strstart - 1, run); 1743 _tr_tally_dist(s, 1, run - MIN_MATCH, bflush); 1744 s->lookahead -= run; 1745 s->strstart += run;
|
| /xnu-11215/tests/counter/ |
| H A D | benchmark.lua | 85 for out in benchmark:run(args) do
|