Searched +full:pull +full:- +full:comment (Results 1 – 8 of 8) sorted by relevance
/qemu/.github/workflows/ |
H A D | lockdown.yml | 1 # Configuration for Repo Lockdown - https://github.com/dessant/repo-lockdown 10 pull-requests: write 14 runs-on: ubuntu-latest 16 - uses: dessant/repo-lockdown@v2 18 pr-comment: | 21 This repository is a read-only mirror of the project's repostories hosted 22 on https://gitlab.com/qemu-project/qemu.git. 29 lock-pr: true 30 close-pr: true
|
/qemu/scripts/ |
H A D | checkpatch.pl | 5 # (c) 2008-2010 Andy Whitcroft <apw@canonical.com> 49 $P [OPTION]... [GIT-REV-LIST] 54 -q, --quiet quiet 55 --no-tree run without a qemu tree 56 --no-signoff do not check for 'Signed-off-by' line 57 --patch treat FILE as patchfile 58 --branch treat args as GIT revision list 59 --emacs emacs compile window format 60 --terse one line per report 61 -f, --file treat FILE as regular source file [all …]
|
/qemu/docs/devel/ |
H A D | submitting-a-patch.rst | 1 .. _submitting-a-patch: 13 one-shot fix, the bare minimum we ask is that: 15 .. list-table:: Minimal Checklist for Patches 17 :header-rows: 1 19 * - Check 20 - Reason 21 * - Patches contain Signed-off-by: Your Name <author@email> 22 …- States you are legally able to contribute the code. See :ref:`patch_emails_must_include_a_signed… 23 * - Sent as patch emails to ``qemu-devel@nongnu.org`` 24 - The project uses an email list based workflow. See :ref:`submitting_your_patches` [all …]
|
H A D | rust.rst | 14 __ https://doc.rust-lang.org/nomicon/meet-safe-and-unsafe.html 17 ------------------------------ 25 are accustomed to the more "normal" Cargo-based development workflow. 31 * it is also possible to use ``cargo`` for common Rust-specific coding 53 pyvenv/bin/meson devenv -w ../rust cargo clippy --tests 54 pyvenv/bin/meson devenv -w ../rust cargo fmt 62 tree. This third method is useful if you are using ``rust-analyzer``; 64 ``rust-analyzer.cargo.extraEnv`` setting. 66 As shown above, you can use the ``--tests`` option as usual to operate on test 71 make check-rust [all …]
|
/qemu/tests/qtest/ |
H A D | bios-tables-test.c | 10 * See the COPYING file in the top-level directory. 17 * 2. list any changed files in tests/qtest/bios-tables-test-allowed-diff.h 20 * Contributor or ACPI Maintainer (steps 4-7 need to be redone to resolve conflicts 23 * After 1-3 above tests will pass but ignore differences with the expected files. 24 * You will also notice that tests/qtest/bios-tables-test-allowed-diff.h lists 31 * output. If not - disassemble them yourself in any way you like. 32 * Look at the differences - make sure they make sense and match what the 38 * $(SRC_PATH)/tests/data/acpi/rebuild-expected-aml.sh 47 * or before doing a pull request (Maintainer), make sure 48 * tests/qtest/bios-tables-test-allowed-diff.h is empty - this will ensure [all …]
|
/qemu/docs/devel/testing/ |
H A D | main.rst | 7 everything from unit testing and exercising specific sub-systems all 9 tests you can run ``make check-help`` from either the source or build 16 [./pyvenv/bin/]meson test --suite qemu:softfloat 38 ------------------------- 49 Different sub-types of "make check" tests will be explained below. 55 .. _unit-tests: 68 In QEMU, unit tests can be invoked with ``make check-unit``. They are 76 1. Create a new source file. For example, ``tests/unit/foo-test.c``. 86 is in ``tests/unit/foo-test.c``, it is enough to add an entry like:: 90 'foo-test': [], [all …]
|
/qemu/include/qemu/ |
H A D | osdep.h | 4 * This header exists to pull in some common system headers that 10 * of config-host.h, config-target.h, qemu/compiler.h, 11 * system/os-posix.h, system/os-win32.h, system/os-wasm.h, glib-compat.h and 16 * os-*.c and util/oslib-*.c; those would probably be better split 25 * See the COPYING file in the top-level directory. 34 #include "config-host.h" 90 /* enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later) */ 121 * function availability on recentish Mingw-w64 platforms. */ 131 /* setjmp must be declared before system/os-win32.h 161 #include "glib-compat.h" [all …]
|
/qemu/ |
H A D | meson.build | 15 meson.add_postconf_script(find_program('scripts/symlink-install-tree.py')) 28 config_host = keyval.load(meson.current_build_dir() / 'config-host.mak') 35 tmpdir = meson.current_build_dir() / 'meson-private/temp' 66 have_linux_user = have_linux_user or target.endswith('linux-user') 67 have_bsd_user = have_bsd_user or target.endswith('bsd-user') 68 have_system = have_system or target.endswith('-softmmu') 113 …dgen.version() + ' is unsupported. You can install a new version with "cargo install bindgen-cli"') 120 message('To use Rust you can install a new version with "cargo install bindgen-cli"') 128 '--rustc-version', rustc.version(), 129 '--workspace', meson.project_source_root() / 'rust'] [all …]
|