Merge branch 'upstream-16.11-stable' into 16.11.x
[deb_dpdk.git] / debian / tests / check-dpdk-supported-arch.sh
1 #!/bin/bash
2
3 arch=$(dpkg --print-architecture)
4 case $arch in
5     amd64|arm64|i386|ppc64el)
6         echo "Architecture ${arch} supported, go on with test"
7         ;;
8     *)
9         echo "Architecture ${arch} not supported, SKIP test"
10         exit 0
11         ;;
12 esac