blob: ccc88eb509edb0210b4f24506dcb864a85ce2d8b [file] [log] [blame]
Nguyen Anh Quynh7fcf7232014-01-07 21:54:55 +08001#!/bin/bash
2
3# Run all the Python tests, and send the output that to a file to be compared later
4# This is useful when we want to verify if a commit (wrongly) changes the disassemble result.
5
Nguyen Anh Quynhd8029ae2014-01-15 12:44:12 +08006../tests/test > /tmp/$1
7../tests/test_detail >> /tmp/$1
Nguyen Anh Quynh952da902014-11-13 11:39:58 +08008../tests/test_skipdata >> /tmp/$1
9../tests/test_iter >> /tmp/$1
Nguyen Anh Quynhd8029ae2014-01-15 12:44:12 +080010../tests/test_arm >> /tmp/$1
11../tests/test_arm64 >> /tmp/$1
12../tests/test_mips >> /tmp/$1
13../tests/test_ppc >> /tmp/$1
Nguyen Anh Quynh61b7a722014-03-10 15:44:48 +080014../tests/test_sparc >> /tmp/$1
Nguyen Anh Quynhd8029ae2014-01-15 12:44:12 +080015../tests/test_x86 >> /tmp/$1
Nguyen Anh Quynh952da902014-11-13 11:39:58 +080016../tests/test_systemz >> /tmp/$1
17../tests/test_xcore >> /tmp/$1