diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-03-08 23:19:32 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-03-08 23:19:32 +0200 |
commit | 0a4818164de8b35fff1b80020d2f7a6ede8f7036 (patch) | |
tree | 6e3a4f7cc859a5ebcc1c6675dd3ea3d342ca5a11 | |
parent | 7ac1269850d01403f77a0ac1549f67eb77d81a4a (diff) | |
download | meson-0a4818164de8b35fff1b80020d2f7a6ede8f7036.zip meson-0a4818164de8b35fff1b80020d2f7a6ede8f7036.tar.gz meson-0a4818164de8b35fff1b80020d2f7a6ede8f7036.tar.bz2 |
Run object tests on i686, too.
-rwxr-xr-x | run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py index 387b69e..11a6c0e 100755 --- a/run_tests.py +++ b/run_tests.py @@ -141,7 +141,7 @@ def run_tests(): objtests = gather_tests('test cases/prebuilt object') if environment.is_linux(): cpuid = platform.machine() - if cpuid != 'x86_64' and cpuid != 'i386': + if cpuid != 'x86_64' and cpuid != 'i386' and cpuid != 'i686': # Don't have a prebuilt object file for those so skip. objtests = [] if environment.is_osx(): |