1#!/bin/bash 2set -e 3 4# Runs host tests for all projects that support KMP except for Compose-specific projects which are 5# already covered by androidx_compose_multiplatform.sh 6 7# Must be run on Mac 8 9export ANDROIDX_PROJECTS=INFRAROGUE # TODO: Switch from `INFRAROGUE` to `KMP` 10 11echo "Starting $0 at $(date)" 12 13cd "$(dirname $0)" 14 15# Setup simulators 16impl/androidx-native-mac-simulator-setup.sh 17 18impl/build.sh darwinBenchmarkResults allHostTests \ 19 --no-configuration-cache \ 20 -Pandroidx.ignoreTestFailures \ 21 -Pandroidx.displayTestOutput=false \ 22 "$@" 23 24echo "Completing $0 at $(date)"