summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2012-06-12 17:54:29 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2012-06-12 17:55:11 -0500
commit78a76a62483cb6d2e895dbe77de97893ca80fb5b (patch)
tree3b7445c7e9b237f42e8502e91bf27b14c8941bb5
parentcommon.sh: Add v850 as target (diff)
downloadrtems-testing-78a76a62483cb6d2e895dbe77de97893ca80fb5b.tar.bz2
gcc test scripts: add v850 target support
-rwxr-xr-xgcc/do_one1
-rwxr-xr-xgcc/rundeja8
2 files changed, 8 insertions, 1 deletions
diff --git a/gcc/do_one b/gcc/do_one
index ffbbf9c..459215c 100755
--- a/gcc/do_one
+++ b/gcc/do_one
@@ -366,6 +366,7 @@ if [ ${needCPU} = yes -a ${needBSP} = yes -a \
sh-simsh1) dejacfg=rtems-sh-simsh1 ;;
sparc-sis) dejacfg=rtems-sparc-sis ;;
sparc64-niagara) dejacfg=rtems-sparc64-nosim ;;
+ v850-v850*sim*) dejacfg=rtems-v850-v850sim ;;
*)
echo "ERROR ${bsp} is not known to DegaGNU"
exit 1
diff --git a/gcc/rundeja b/gcc/rundeja
index 82a3eb6..205d22a 100755
--- a/gcc/rundeja
+++ b/gcc/rundeja
@@ -3,7 +3,7 @@
#
if [ $# -lt 2 ] ; then
- echo USAGE: BSP COMPILER
+ echo USAGE: BSP TESTSUITE
exit 1
fi
@@ -100,6 +100,12 @@ case $1 in
DEJABSP=qemu
BSP_SIM=pc386
;;
+ v850sim)
+ CPU=v850
+ BSP=v850sim
+ DEJABSP=v850sim
+ BSP_SIM=v850sim
+ ;;
*)
echo UNKNOWN BSP
exit 1