⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 djcheck.sh

📁 arm-linux-gcc编译器
💻 SH
字号:
#!/bin/sh# A shell script to run the test suite on the DJGPP version of GDB.ORIGDIR=`pwd`GDB=${ORIGDIR}/../gdb.exeSUBDIRS=`find $ORIGDIR -type d ! -ipath $ORIGDIR`for d in $SUBDIRSdo  cd $d  echo "Running tests in $d..."  for f in *.out  do    test -f $f || break    base=`basename $f .out`    if test "${base}" = "dbx" ; then	options=-dbx    else	options=    fi    $GDB ${options} < ${base}.in 2>&1 \      | sed -e '/GNU gdb /s/ [.0-9][.0-9]*//' \            -e '/^Copyright/s/[12][0-9][0-9][0-9]/XYZZY/g' \            -e '/Starting program: /s|[A-z]:/.*/||' \            -e '/main (/s/=0x[0-9a-f][0-9a-f]*/=XYZ/g' \      > ${base}.tst    if diff --binary -u ${base}.out ${base}.tst ; then      rm -f ${base}.tst    fi  donedone

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -