From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57832) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WKp0Y-0003kh-7S for qemu-devel@nongnu.org; Tue, 04 Mar 2014 08:03:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WKp0P-0002gZ-4O for qemu-devel@nongnu.org; Tue, 04 Mar 2014 08:03:42 -0500 Received: from mx1.redhat.com ([209.132.183.28]:17606) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WKp0O-0002gR-SQ for qemu-devel@nongnu.org; Tue, 04 Mar 2014 08:03:33 -0500 Date: Tue, 4 Mar 2014 15:03:28 +0200 From: "Michael S. Tsirkin" Message-ID: <1393937889-14553-11-git-send-email-mst@redhat.com> References: <1393937889-14553-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1393937889-14553-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL 10/12] acpi-build: partially revert dac1e93093f9306c114f410785c99aa5261539b4 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Anthony Liguori , Marcel Apfelbaum From: Marcel Apfelbaum It touched the acpi test by mistake, removed that hunk. Signed-off-by: Marcel Apfelbaum Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- tests/acpi-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/acpi-test.c b/tests/acpi-test.c index 613dda8..31f5359 100644 --- a/tests/acpi-test.c +++ b/tests/acpi-test.c @@ -153,7 +153,7 @@ static void free_test_data(test_data *data) g_free(temp->aml); } if (temp->aml_file) { - if (!temp->asl_file_retain && g_strstr_len(temp->aml_file, -1, "aml-")) { + if (g_strstr_len(temp->aml_file, -1, "aml-")) { unlink(temp->aml_file); } g_free(temp->aml_file); -- MST