You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
309 B
13 lines
309 B
4 months ago
|
#!/bin/sh
|
||
|
|
||
|
profile=${1:-default}
|
||
|
|
||
|
cd $(dirname $0) # Move to test directory
|
||
|
if [ ! $SCRIPTS_DIR ]; then
|
||
|
# assume we're running standalone
|
||
|
export SCRIPTS_DIR=../../scripts/
|
||
|
fi
|
||
|
. $SCRIPTS_DIR/setenv.sh
|
||
|
# Warning: tests args are now set in profiles
|
||
|
$SCRIPTS_DIR/run_c_files.sh $profile prio-wake
|