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