From patchwork Thu Jun 6 15:06:40 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aleksandar Markovic X-Patchwork-Id: 1111185 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=nongnu.org (client-ip=209.51.188.17; helo=lists.gnu.org; envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=rt-rk.com Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 45KTdf1tRbz9sNT for ; Fri, 7 Jun 2019 01:11:32 +1000 (AEST) Received: from localhost ([127.0.0.1]:33741 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hYu37-0002vm-TS for incoming@patchwork.ozlabs.org; Thu, 06 Jun 2019 11:11:29 -0400 Received: from eggs.gnu.org ([209.51.188.92]:35402) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hYtzw-0000eM-Bo for qemu-devel@nongnu.org; Thu, 06 Jun 2019 11:08:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hYtzv-00060p-9d for qemu-devel@nongnu.org; Thu, 06 Jun 2019 11:08:12 -0400 Received: from mx2.rt-rk.com ([89.216.37.149]:51417 helo=mail.rt-rk.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hYtzv-0005zm-3v for qemu-devel@nongnu.org; Thu, 06 Jun 2019 11:08:11 -0400 Received: from localhost (localhost [127.0.0.1]) by mail.rt-rk.com (Postfix) with ESMTP id 7EC831A220F; Thu, 6 Jun 2019 17:07:00 +0200 (CEST) X-Virus-Scanned: amavisd-new at rt-rk.com Received: from rtrkw774-lin.domain.local (rtrkw774-lin.domain.local [10.10.13.43]) by mail.rt-rk.com (Postfix) with ESMTPSA id 59D761A21F8; Thu, 6 Jun 2019 17:07:00 +0200 (CEST) From: Aleksandar Markovic To: qemu-devel@nongnu.org Date: Thu, 6 Jun 2019 17:06:40 +0200 Message-Id: <1559833603-29660-8-git-send-email-aleksandar.markovic@rt-rk.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1559833603-29660-1-git-send-email-aleksandar.markovic@rt-rk.com> References: <1559833603-29660-1-git-send-email-aleksandar.markovic@rt-rk.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 89.216.37.149 Subject: [Qemu-devel] [PATCH v2 07/10] tests/tcg: target/mips: Move four tests to a better location X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: arikalo@wavecomp.com, amarkovic@wavecomp.com Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" From: Aleksandar Markovic Move tests for _Q. from "integer multiply" directory to "fixed-point multiply" directory, since they do not operate on integers, but on fixed point numbers. Signed-off-by: Aleksandar Markovic --- .../mips/user/ase/msa/{int-multiply => fixed-multiply}/test_msa_mul_q_h.c | 0 .../mips/user/ase/msa/{int-multiply => fixed-multiply}/test_msa_mul_q_w.c | 0 .../user/ase/msa/{int-multiply => fixed-multiply}/test_msa_mulr_q_h.c | 0 .../user/ase/msa/{int-multiply => fixed-multiply}/test_msa_mulr_q_w.c | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename tests/tcg/mips/user/ase/msa/{int-multiply => fixed-multiply}/test_msa_mul_q_h.c (100%) rename tests/tcg/mips/user/ase/msa/{int-multiply => fixed-multiply}/test_msa_mul_q_w.c (100%) rename tests/tcg/mips/user/ase/msa/{int-multiply => fixed-multiply}/test_msa_mulr_q_h.c (100%) rename tests/tcg/mips/user/ase/msa/{int-multiply => fixed-multiply}/test_msa_mulr_q_w.c (100%) diff --git a/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_mul_q_h.c b/tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_mul_q_h.c similarity index 100% rename from tests/tcg/mips/user/ase/msa/int-multiply/test_msa_mul_q_h.c rename to tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_mul_q_h.c diff --git a/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_mul_q_w.c b/tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_mul_q_w.c similarity index 100% rename from tests/tcg/mips/user/ase/msa/int-multiply/test_msa_mul_q_w.c rename to tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_mul_q_w.c diff --git a/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_mulr_q_h.c b/tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_mulr_q_h.c similarity index 100% rename from tests/tcg/mips/user/ase/msa/int-multiply/test_msa_mulr_q_h.c rename to tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_mulr_q_h.c diff --git a/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_mulr_q_w.c b/tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_mulr_q_w.c similarity index 100% rename from tests/tcg/mips/user/ase/msa/int-multiply/test_msa_mulr_q_w.c rename to tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_mulr_q_w.c