blob: 1b78b46d75f10e3c2f87491e4d83180459f42ec3 [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
8../tests/test_arm >> /tmp/$1
9../tests/test_arm64 >> /tmp/$1
10../tests/test_mips >> /tmp/$1
11../tests/test_ppc >> /tmp/$1
Nguyen Anh Quynh61b7a722014-03-10 15:44:48 +080012../tests/test_sparc >> /tmp/$1
Nguyen Anh Quynhd8029ae2014-01-15 12:44:12 +080013../tests/test_x86 >> /tmp/$1