diff --git a/docs/README.md b/docs/README.md index 39a9a6b45ecd17..a7642e43b94e7e 100644 --- a/docs/README.md +++ b/docs/README.md @@ -165,9 +165,11 @@ used when committed. browser vendors * [Using Crashpad with `content_shell`](testing/using_crashpad_with_content_shell.md) - Capture stack traces on layout test crashes without an attached debugger -* [Test Descriptions](test_descriptions.md) - Unit test targets that can be +* [Test Descriptions](testing/test_descriptions.md) - Unit test targets that can be built, with associated desciptions. -* [IPC Fuzzer](ipc_fuzzer.md) - Fuzz testing of Chromium IPC interfaces. +* [IPC Fuzzer](testing/ipc_fuzzer.md) - Fuzz testing of Chromium IPC interfaces. +* [Running Chrome tests with AddressSanitizer (asan) and LeakSanitizer (lsan)](testing/linux_running_asan_tests.md) - + Run Chrome tests with ASAN and LSAN builds to detect addressability issues and memory leaks. ### GPU-related docs * [GPU Pixel Wrangling](gpu/pixel_wrangling.md) - Instructions for GPU @@ -219,7 +221,7 @@ used when committed. isolate browser components with different privileges. * [Zygote Process](linux_zygote.md) - How the Linux Zygote process, used to spawn new processes, works. -* [Running Web Tests on Linux](web_tests_linux.md) - Linux-specific +* [Running Web Tests on Linux](testing/web_tests_linux.md) - Linux-specific instructions for running web tests. * [Linux Sysroot Images](linux_sysroot.md) - How builds use libraries on Linux * [Linux Hardware Video Decoding](linux_hw_video_decode.md) - Enabling @@ -247,7 +249,7 @@ used when committed. Setting up profiling for `content_shell` on Android * [Working Remotely with Android](working_remotely_with_android.md) - Building on a remote machine for an Android device connected to your local machine -* [Android Test Instructions](android_test_instructions.md) - Running a build +* [Android Test Instructions](testing/android_test_instructions.md) - Running a build on an Android device or emulator. * [Android Debugging](android_debugging_instructions.md) - Tools and tips for how to debug Java and/or C/C++ code running on Android. diff --git a/docs/android_test_instructions.md b/docs/testing/android_test_instructions.md similarity index 100% rename from docs/android_test_instructions.md rename to docs/testing/android_test_instructions.md diff --git a/docs/ipc_fuzzer.md b/docs/testing/ipc_fuzzer.md similarity index 100% rename from docs/ipc_fuzzer.md rename to docs/testing/ipc_fuzzer.md diff --git a/docs/linux_running_asan_tests.md b/docs/testing/linux_running_asan_tests.md similarity index 100% rename from docs/linux_running_asan_tests.md rename to docs/testing/linux_running_asan_tests.md diff --git a/docs/test_descriptions.md b/docs/testing/test_descriptions.md similarity index 100% rename from docs/test_descriptions.md rename to docs/testing/test_descriptions.md diff --git a/docs/web_tests_linux.md b/docs/testing/web_tests_linux.md similarity index 100% rename from docs/web_tests_linux.md rename to docs/testing/web_tests_linux.md