home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / asmutil / probe.zip / PRTEST.C < prev    next >
C/C++ Source or Header  |  1986-04-23  |  531b  |  53 lines

  1. /*            PRTEST.C
  2.     Test program for the program PROBE
  3.         Author: Colin Stearman [71036,256]
  4. */
  5.  
  6. long i;
  7. main()
  8.  
  9. {
  10. printf("test1\n");
  11. test1();
  12. printf("test2\n");
  13. test2();
  14. printf("test3\n");
  15. test3();
  16. printf("test4\n");
  17. test4();
  18. printf("test5\n");
  19. test5();
  20. }
  21.  
  22. test1()
  23.  
  24. {
  25. for (i=0; i<10000; i++);
  26. }
  27.  
  28. test2()
  29.  
  30. {
  31. for (i=0; i<20000; i++);
  32. }
  33. test3()
  34.  
  35. {
  36. for (i=0; i<30000; i++);
  37. }
  38. test4()
  39.  
  40. {
  41. for (i=0; i<40000; i++);
  42. }
  43. test5()
  44.  
  45. {
  46. for (i=0; i<50000; i++);
  47. }
  48. test6()
  49.  
  50. {
  51. for (i=0; i<100; i++);
  52. }
  53.