From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51695) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bb98v-0008Vg-Vo for qemu-devel@nongnu.org; Sat, 20 Aug 2016 12:29:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bb98t-0008NW-RW for qemu-devel@nongnu.org; Sat, 20 Aug 2016 12:29:08 -0400 Received: from mail-yw0-x244.google.com ([2607:f8b0:4002:c05::244]:35219) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bb98t-0008NS-L4 for qemu-devel@nongnu.org; Sat, 20 Aug 2016 12:29:07 -0400 Received: by mail-yw0-x244.google.com with SMTP id r9so1968191ywg.2 for ; Sat, 20 Aug 2016 09:29:07 -0700 (PDT) From: Pranith Kumar Date: Sat, 20 Aug 2016 12:28:46 -0400 Message-Id: <20160820162846.13501-4-bobby.prani@gmail.com> In-Reply-To: <20160820162846.13501-1-bobby.prani@gmail.com> References: <20160820162846.13501-1-bobby.prani@gmail.com> Subject: [Qemu-devel] [PATCH v2 3/3] travis: Enable litmus tests List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, =?UTF-8?q?Alex=20Benn=C3=A9e?= Enable running the litmus tests on travis. Signed-off-by: Pranith Kumar --- .travis.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.travis.yml b/.travis.yml index f30b10e..f670c71 100644 --- a/.travis.yml +++ b/.travis.yml @@ -97,5 +97,13 @@ matrix: before_install: - sudo apt-get update -qq - sudo apt-get build-dep -qq qemu + - sudo apt-get install gcc-aarch64-linux-gnu - wget -O - http://people.linaro.org/~alex.bennee/qemu-submodule-git-seed.tar.xz | tar -xvJ - git submodule update --init --recursive + after_success: + - cd tests/tcg/i386/litmus + - export QEMU=../../../../x86_64-linux-user/qemu-x86_64 + - make tests + - cd ../../aarch64/litmus + - export QEMU=../../../../aarch64-linux-user/qemu-aarch64 + - make tests -- 2.9.3