testone.bat
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:0k
源码类别:

Symbian

开发平台:

C/C++

  1. @echo off
  2. rem
  3. rem This example compares the ARM output against the x86 reference.
  4. rem In this case, the ARM testapp is executed using the ARMulator.
  5. rem
  6. rem The output should match, exactly.
  7. rem
  8. SET TSTAPP=armsd -cpu ARM7TDMI -exec testapp.axf
  9. SET REFAPP=testapp.exe
  10. SET ARGS=%1 %2 %3 %4 %5 %6 %7 %8 %9
  11. echo TESTING %ARGS%
  12. %TSTAPP% %ARGS% in.pcm tst.pcm > NUL
  13. %REFAPP% %ARGS% in.pcm ref.pcm > NUL
  14. fc /b tst.pcm ref.pcm
  15. del tst.pcm
  16. del ref.pcm