home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 15 / CD_ASCQ_15_070894.iso / news / 683 / recio120 / test.bat < prev    next >
DOS Batch File  |  1994-04-08  |  400b  |  19 lines

  1. echo off
  2. cls
  3. echo regression test
  4. echo.
  5. rem run test data through program testch
  6. testch <testch.dat >testch
  7. rem compare results to baseline output
  8. dif testch.out testch
  9. if errorlevel 1 goto next
  10. del testch
  11. :next
  12. rem run test data through program testco
  13. testco <testco.dat >testco
  14. rem compare results to baseline output
  15. dif testco.out testco
  16. if errorlevel 1 goto end
  17. del testco
  18. :end
  19.