<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bwlp/qemu.git/tests/.gitignore, branch master</title>
<subtitle>Experimental fork of QEMU with video encoding patches</subtitle>
<id>https://git.openslx.org/bwlp/qemu.git/atom/tests/.gitignore?h=master</id>
<link rel='self' href='https://git.openslx.org/bwlp/qemu.git/atom/tests/.gitignore?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/'/>
<updated>2020-10-13T10:48:17+00:00</updated>
<entry>
<title>Remove superfluous .gitignore files</title>
<updated>2020-10-13T10:48:17+00:00</updated>
<author>
<name>Thomas Huth</name>
</author>
<published>2020-09-19T10:27:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=2ae00c8b2f7536f1bb38c3eb40d76f4196c61d0c'/>
<id>urn:sha1:2ae00c8b2f7536f1bb38c3eb40d76f4196c61d0c</id>
<content type='text'>
Since we are now always doing out-of-tree builds, these gitignore
files should not be necessary anymore.

Message-Id: &lt;20200919133637.72744-1-thuth@redhat.com&gt;
Signed-off-by: Thomas Huth &lt;thuth@redhat.com&gt;
</content>
</entry>
<entry>
<title>tests/tcg/aarch64: add a gdbstub testcase for SVE registers</title>
<updated>2020-03-17T17:38:47+00:00</updated>
<author>
<name>Alex Bennée</name>
</author>
<published>2020-03-16T17:21:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=cf58773f1c233e3bb43abc4b4b0aaad60ce9a6be'/>
<id>urn:sha1:cf58773f1c233e3bb43abc4b4b0aaad60ce9a6be</id>
<content type='text'>
A very simple test case which sets and reads SVE registers while
running a test case. We don't really need to compile a SVE binary for
this case but we will later so keep it simple for now.

Signed-off-by: Alex Bennée &lt;alex.bennee@linaro.org&gt;
Tested-by: Philippe Mathieu-Daudé &lt;philmd@redhat.com&gt;
Message-Id: &lt;20200316172155.971-24-alex.bennee@linaro.org&gt;
</content>
</entry>
<entry>
<title>qapi: Generate command registration stuff into separate files</title>
<updated>2020-01-14T10:01:58+00:00</updated>
<author>
<name>Markus Armbruster</name>
</author>
<published>2019-11-20T18:25:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=00ca24ff9e5fc3c6ae608226908e6864ad8193a8'/>
<id>urn:sha1:00ca24ff9e5fc3c6ae608226908e6864ad8193a8</id>
<content type='text'>
Having to include qapi-commands.h just for qmp_init_marshal() is
suboptimal.  Generate it into separate files.  This lets
monitor/misc.c, qga/main.c, and the generated qapi-commands-FOO.h
include less.

Signed-off-by: Markus Armbruster &lt;armbru@redhat.com&gt;
Message-Id: &lt;20191120182551.23795-4-armbru@redhat.com&gt;
[Typos in docs/devel/qapi-code-gen.txt fixed]
Reviewed-by: Eric Blake &lt;eblake@redhat.com&gt;
</content>
</entry>
<entry>
<title>tests/.gitignore: ignore test-qapi-emit-events.[ch] for in-tree builds</title>
<updated>2019-03-14T15:02:13+00:00</updated>
<author>
<name>Stefano Garzarella</name>
</author>
<published>2019-03-14T10:46:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=a0af8cee3cf6c2fc08fee5b69820c2f91d5b0b44'/>
<id>urn:sha1:a0af8cee3cf6c2fc08fee5b69820c2f91d5b0b44</id>
<content type='text'>
Commit 5d75648b56e generates 'tests/test-qapi-emit-events.[ch]' but
did not ignore them for in-tree builds.

Signed-off-by: Stefano Garzarella &lt;sgarzare@redhat.com&gt;
Reviewed-by: Eric Blake &lt;eblake@redhat.com&gt;
Message-Id: &lt;20190314104622.101715-3-sgarzare@redhat.com&gt;
Signed-off-by: Laurent Vivier &lt;laurent@vivier.eu&gt;
</content>
</entry>
<entry>
<title>qapi: Fix code generation for sub-modules in other directories</title>
<updated>2019-03-05T13:43:11+00:00</updated>
<author>
<name>Markus Armbruster</name>
</author>
<published>2019-03-01T15:40:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=709395f8f627808175307f0c298ce71614fa67d0'/>
<id>urn:sha1:709395f8f627808175307f0c298ce71614fa67d0</id>
<content type='text'>
The #include directives to pull in sub-modules use file names relative
to the main module.  Works only when all modules are in the same
directory, or the main module's output directory is in the compiler's
include path.  Use relative file names instead.

The dummy variable we generate to avoid empty .o files has an invalid
name for sub-modules in other directories.  Fix that.

Both messed up in commit 252dc3105fc "qapi: Generate separate .h, .c
for each module".  Escaped testing because tests/qapi-schema-test.json
doesn't cover sub-modules in other directories, only
tests/qapi-schema/include-relpath.json does, and we generate and
compile C code only for the former, not the latter.  Fold the latter
into the former.  This would have caught the mistakes fixed in this
commit.

Signed-off-by: Markus Armbruster &lt;armbru@redhat.com&gt;
Message-Id: &lt;20190301154051.23317-5-armbru@redhat.com&gt;
Reviewed-by: Eric Blake &lt;eblake@redhat.com&gt;
</content>
</entry>
<entry>
<title>tests: Ignore fp test outputs</title>
<updated>2019-02-26T14:05:19+00:00</updated>
<author>
<name>Eric Blake</name>
</author>
<published>2019-02-01T19:32:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=3acf04f8998142a16b91b433d6088a0b25fbcd6e'/>
<id>urn:sha1:3acf04f8998142a16b91b433d6088a0b25fbcd6e</id>
<content type='text'>
Commit 2cade3d wired up new tests, but did not exclude the
new *.out files produced by running the tests.

Signed-off-by: Eric Blake &lt;eblake@redhat.com&gt;
Reviewed-by: Emilio G. Cota &lt;cota@braap.org&gt;
Signed-off-by: Alex Bennée &lt;alex.bennee@linaro.org&gt;
</content>
</entry>
<entry>
<title>tests/.gitignore: don't ignore docker tests</title>
<updated>2018-07-24T10:45:25+00:00</updated>
<author>
<name>Alex Bennée</name>
</author>
<published>2018-07-09T09:54:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=1818d50179b314a833d0d8881a4b36001cc8e189'/>
<id>urn:sha1:1818d50179b314a833d0d8881a4b36001cc8e189</id>
<content type='text'>
The .gitignore was being a little over enthusiastic hiding files.

Signed-off-by: Alex Bennée &lt;alex.bennee@linaro.org&gt;
Reviewed-by: Philippe Mathieu-Daudé &lt;f4bug@amsat.org&gt;
</content>
</entry>
<entry>
<title>tests: Simplify .gitignore</title>
<updated>2018-06-21T14:21:19+00:00</updated>
<author>
<name>Eric Blake</name>
</author>
<published>2018-06-19T20:39:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=ac5de4984df282d64feb4af33b92e0a75652e2b6'/>
<id>urn:sha1:ac5de4984df282d64feb4af33b92e0a75652e2b6</id>
<content type='text'>
Commit 0bcc8e5b was yet another instance of 'git status' reporting
dirty files after an in-tree build, thanks to the new binary
tests/check-block-qdict.

Instead of piecemeal exemptions of each new binary as they are
added, let's use git's negative globbing feature to exempt ALL
files that have a 'test-' or 'check-' prefix, except for the ones
ending in '.c' or '.sh'.  We still have a couple of generated
files that then need (re-)exclusion, but the overall list is a
LOT shorter, and less prone to needing future edits.

Signed-off-by: Eric Blake &lt;eblake@redhat.com&gt;
Message-Id: &lt;20180619203918.65450-1-eblake@redhat.com&gt;
Reviewed-by: Philippe Mathieu-Daudé &lt;f4bug@amsat.org&gt;
</content>
</entry>
<entry>
<title>tests/.gitignore: add entry for generated file</title>
<updated>2018-06-01T16:20:38+00:00</updated>
<author>
<name>Ross Zwisler</name>
</author>
<published>2018-05-21T16:32:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=2e0c56cdde0b4bbd6ed4070626ed72d1977da07f'/>
<id>urn:sha1:2e0c56cdde0b4bbd6ed4070626ed72d1977da07f</id>
<content type='text'>
After a "make check" we end up with the following:

$ git status
On branch master
Your branch is up-to-date with 'origin/master'.

Untracked files:
  (use "git add &lt;file&gt;..." to include in what will be committed)

	tests/test-block-backend

nothing added to commit but untracked files present (use "git add" to track)

Signed-off-by: Ross Zwisler &lt;ross.zwisler@linux.intel.com&gt;
Fixes: commit ad0df3e0fdac ("block: test blk_aio_flush() with blk-&gt;root == NULL")
Cc: Kevin Wolf &lt;kwolf@redhat.com&gt;
Reviewed-by: Michael S. Tsirkin &lt;mst@redhat.com&gt;
Signed-off-by: Michael S. Tsirkin &lt;mst@redhat.com&gt;
Reviewed-by: Eric Blake &lt;eblake@redhat.com&gt;
</content>
</entry>
<entry>
<title>sockets: move fd_is_socket() into common sockets code</title>
<updated>2018-03-13T18:06:06+00:00</updated>
<author>
<name>Daniel P. Berrange</name>
</author>
<published>2017-12-21T12:55:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=58dc31f1a7dc6cd0f21bd51a34011ba366d36e53'/>
<id>urn:sha1:58dc31f1a7dc6cd0f21bd51a34011ba366d36e53</id>
<content type='text'>
The fd_is_socket() helper method is useful in a few places, so put it in
the common sockets code. Make the code more compact while moving it.

Reviewed-by: Eric Blake &lt;eblake@redhat.com&gt;
Reviewed-by: Marc-André Lureau &lt;marcandre.lureau@redhat.com&gt;
Signed-off-by: Daniel P. Berrange &lt;berrange@redhat.com&gt;
</content>
</entry>
</feed>
