Nguyen Anh Quynh | 7fcf723 | 2014-01-07 21:54:55 +0800 | [diff] [blame] | 1 | #!/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 Quynh | d8029ae | 2014-01-15 12:44:12 +0800 | [diff] [blame] | 6 | ../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 Quynh | 61b7a72 | 2014-03-10 15:44:48 +0800 | [diff] [blame] | 12 | ../tests/test_sparc >> /tmp/$1 |
Nguyen Anh Quynh | d8029ae | 2014-01-15 12:44:12 +0800 | [diff] [blame] | 13 | ../tests/test_x86 >> /tmp/$1 |