Changeset e0487ed in rtems
- Timestamp:
- Sep 5, 2008, 2:42:35 PM (11 years ago)
- Branches:
- 4.10, 4.11, 4.9, master
- Children:
- b3bbcdf1
- Parents:
- 7eb312d5
- Location:
- c/src/lib/libbsp/powerpc/psim/tools
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/powerpc/psim/tools/ChangeLog
r7eb312d5 re0487ed 1 2008-09-05 Joel Sherrill <joel.sherrill@oarcorp.com> 2 3 * psim-shared, psim-top.in, runtest-bottom, runtest-top.in: Now running 4 mptests. 5 1 6 2008-09-03 Joel Sherrill <joel.sherrill@oarcorp.com> 2 7 -
c/src/lib/libbsp/powerpc/psim/tools/psim-shared
r7eb312d5 re0487ed 52 52 echo "/sem@0x0c100010/key ${RTEMS_SHM_SEMAPHORE_KEY}" 53 53 echo "/sem@0x0c100010/value ${value}" 54 $@54 echo 55 55 echo "##### System V IPC (Shared Memory) 0x0c110000 for 128K" 56 56 echo "/shm@0x0c110000/reg 0x0c110000 0x20000" … … 65 65 testname=${1} 66 66 max_run_time=${2} 67 if [ $# -eq 3 ] ; then 68 treefile=${3} 69 else 70 treefile=${TREE_FILE} 71 fi 67 72 if [ ${max_run_time} -eq 0 ] ; then 68 73 #echo run ${testname} forever 69 ${RUN} -f ${ TREE_FILE} ${RUN_DEBUG} ${testname}74 ${RUN} -f ${treefile} ${RUN_DEBUG} ${testname} 70 75 else 71 76 #echo run ${testname} for maximum ${max_run_time} seconds 72 ${RUN} -f ${ TREE_FILE} ${RUN_DEBUG} ${testname} &77 ${RUN} -f ${treefile} ${RUN_DEBUG} ${testname} & 73 78 pid=$! 74 79 -
c/src/lib/libbsp/powerpc/psim/tools/psim-top.in
r7eb312d5 re0487ed 14 14 15 15 TREE_FILE=psim_tree.${LOGNAME} 16 RUN=@target_alias@-run 16 if [ X${RUN} = X ] ; then 17 RUN=@target_alias@-run 18 fi 17 19 18 20 -
c/src/lib/libbsp/powerpc/psim/tools/runtest-bottom
r7eb312d5 re0487ed 63 63 # XXX -c ${instruction_limit} 64 64 65 runone ${tname}-node1${variant}.${ext} ${max_run_time} | \ 65 gen_device_tree ${tname}-node1${variant}${ext} >${TREE_FILE}_1 66 gen_device_tree ${tname}-node2${variant}${ext} >${TREE_FILE}_2 67 68 runone ${tname}-node1${variant}${ext} \ 69 ${max_run_time} ${TREE_FILE}_1 | \ 66 70 sed -e 's/^M//' -e '/^$/d' > ${logfile1} & 67 runone ${tname}-node2${variant}.${ext} ${max_run_time} | \ 71 runone ${tname}-node2${variant}${ext} \ 72 ${max_run_time} ${TREE_FILE}_2 | \ 68 73 sed -e 's/^M//' -e '/^$/d' > ${logfile2} & 69 74 wait 70 75 76 #rm -f ${TREE_FILE}_1 ${TREE_FILE}_2 71 77 fi 72 78 … … 83 89 # Spin off the simulator in the background 84 90 # -c could be used to set an instruction limit 91 gen_device_tree ${tfile} >${TREE_FILE} 85 92 runone ${tfile} ${max_run_time} | \ 86 93 sed -e 's/^M//' -e '/^$/d' > ${logfile} 94 95 rm -f ${TREE_FILE} 87 96 fi 88 97 -
c/src/lib/libbsp/powerpc/psim/tools/runtest-top.in
r7eb312d5 re0487ed 18 18 # progname=`basename $0` 19 19 progname=${0##*/} # fast basename hack for ksh, bash 20 RUN=@target_alias@-run 20 if [ X${RUN} = X ] ; then 21 RUN=@target_alias@-run 22 fi 21 23 22 24 USAGE=\
Note: See TracChangeset
for help on using the changeset viewer.