mirror of
https://github.com/token2/snapd.git
synced 2026-03-13 11:15:47 -07:00
13 lines
208 B
Bash
Executable File
13 lines
208 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
export UBUNTU_CORE_LAUNCHER_NO_ROOT=1
|
|
|
|
if [ $(dpkg --print-architecture) != "amd64" ]; then
|
|
printf "Tests will only work on amd64\n"
|
|
exit 0
|
|
fi
|
|
|
|
run-parts --regex '^test_[a-z_]+$' .
|