Skip to content
Snippets Groups Projects
Commit a07685ac authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

added arm tests

parent dceb708f
No related branches found
No related tags found
No related merge requests found
...@@ -154,6 +154,21 @@ builtin-xforms-centos76: ...@@ -154,6 +154,21 @@ builtin-xforms-centos76:
variables: variables:
OS: 'centos76' OS: 'centos76'
builtin-xforms-arm32:
<<: *builtin-xforms
tags:
- arm32
variables:
OS: 'arm32'
builtin-xforms-arm64:
<<: *builtin-xforms
tags:
- arm64
variables:
OS: 'arm64'
# #
# elfdep test # elfdep test
# #
......
...@@ -5,5 +5,11 @@ set -x ...@@ -5,5 +5,11 @@ set -x
cd /tmp/peasoup_test cd /tmp/peasoup_test
source set_env_vars source set_env_vars
cd $PEASOUP_HOME/tests cd $PEASOUP_HOME/tests
make clean; make clean;
./test_cmds.sh -c "fix_calls_rida fix_calls_ida" -l -a "bzip2 tcpdump" if [[ $(uname -m) == 'armv7l' ]] || [[ $(uname -m) == 'aarch64' ]]; then
./test_cmds.sh -c "zipr_rida" -l -a "bzip2 ls"
else
./test_cmds.sh -c "zipr_rida fix_calls_rida fix_calls_ida" -l -a "bzip2 tcpdump"
fi
#!/bin/bash
set -e
set -x
cd /tmp/peasoup_test
source set_env_vars
cd /tmp
rm -rf xxx ped_ls; $PSZ /bin/ls ./xxx -c rida=on -s meds_static=off --tempdir ped_ls || true
if [[ ! -x ./xxx ]]; then cat ped_ls/logs/*; fi
rm -rf ped_ls
./xxx
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment