mirror of
https://github.com/mupen64plus-ae/parallel-rsp.git
synced 2024-11-23 05:29:39 +00:00
19 lines
512 B
Bash
Executable File
19 lines
512 B
Bash
Executable File
#!/bin/bash
|
|
|
|
./build_android_aarch64.sh || exit 1
|
|
cd build-android-aarch64
|
|
echo "Running Android test suite ..."
|
|
ctest --no-label-summary --verbose >android-aarch64.log || exit 1
|
|
cd ..
|
|
|
|
./build_native.sh || exit 1
|
|
cd build-native
|
|
echo "Running native test suite ..."
|
|
ctest --no-label-summary --verbose >native.log || exit 1
|
|
cd ..
|
|
|
|
echo "Comparing output ..."
|
|
echo "=============================="
|
|
diff -Naur build-native/native.log build-android-aarch64/android-aarch64.log
|
|
echo "=============================="
|