home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / os / os2 / misc / 35841 < prev    next >
Encoding:
Internet Message Format  |  1992-11-09  |  2.7 KB

  1. From: Jerry.Guizar@f347.n109.z1.fidonet.org (Jerry Guizar)
  2. Sender: Uucp@blkcat.UUCP
  3. Path: sparky!uunet!blkcat!Uucp
  4. Newsgroups: comp.os.os2.misc
  5. Subject: Video Benchmark (of sort
  6. Message-ID: <721274423.AA00000@blkcat.UUCP>
  7. Date: Sun, 08 Nov 1992 15:43:02 -0500
  8. Lines: 72
  9.  
  10.  
  11.  In article from David Darknell (david@maxwell.ucsc.edu) 
  12.  
  13.  > Full Screen: 16.6 Seconds   Window: 1577.6 Seconds 
  14.  
  15. CPU: 486DX2/50 
  16. BUS: ISA 
  17. Card: ATI Graphics Ultra w/1MB VRAM 
  18. Desktop: 1024x768x256 using 8514 drivers 
  19.  
  20.  > /* load SysSearchPath function */ 
  21.  > call RxFuncAdd 'SysSearchPath', 'RexxUtil', 'SysSearchPath' 
  22.  > call RxFuncAdd 'SysGetKey', 'RexxUtil', 'SysGetKey' 
  23.  > call RxFuncAdd 'SysFileSearch', 'RexxUtil', 'SysFileSearch' 
  24.  
  25. *** call RxFuncAdd 'SysCls', 'RexxUtil', 'SysCls' needed here. *** 
  26.  
  27.  > /* figure out where the OS/2 README file is located  */ 
  28.  > fspec = SysSearchPath('PATH','README') 
  29.  > if fspec == ''  
  30.  >  then do  
  31.  >  say "I can't find your README file" 
  32.  >  say 'sorry.  You should place it somewhere ' 
  33.  >  say 'in a directory on your path. ' 
  34.  >  exit 
  35.  > end 
  36.  > /* found a README file, is it the right one? */ 
  37.  > call SysFileSearch 'OS/2 2.0 README (10/92)', fspec, 'found.'  
  38.  >  if found.0 == 0 
  39.  >  then do 
  40.  >  say " " 
  41.  >  say "I can't find your OS/2 CSD Level XR06055" 
  42.  >  say "README file on your path.  Please place it" 
  43.  >  say "somewhere in a directory on your path. " 
  44.  >  exit 
  45.  > end 
  46.  > /* whew, got it! */ 
  47.  > /* remind user to send add'l info */ 
  48.  > call SysCls 
  49.  > say '===' fspec '===' 
  50.  > say '**' 
  51.  > say '** This program is sort of a screen scrolling benchmark.' 
  52.  > say '** It calculates the amount of time it takes for your readme' 
  53.  > say '** file to scroll on your screen.  You should run this' 
  54.  > say '** program in a 25 line OS/2 window (unobscured), and a 25 line full' 
  55.  > say '** screen session. '   
  56.  > say '**' 
  57.  > say '** email your results to: david@maxwell.ucsc.edu' 
  58.  > say '**' 
  59.  > say '** Along with the two times, be sure to include:' 
  60.  > say '** Your CPU Type: (386SX,386DX,486SX,486DX,486DX2,586)' 
  61.  > say '** Your CPU speed: (in Megahertz)' 
  62.  > say '** Your BUS type: (ISA,EISA,MCA,LOCAL-VL,LOCAL-PCI,LOCAL-PROPRIETARY)' 
  63.  > say '** Your BUS clock speed (in Megahertz).  This should be the speed of' 
  64.  > say '** the local bus if you have one. Your graphics card (i.e. tseng 4K,'  
  65.  > say '** Paradise, ...)  and the graphics resolution of your desktop.  For'  
  66.  > say '** example 1024x768x256 or 1024x768x16.' 
  67.  > say '**' 
  68.  > say '** Press any key to begin the test.' 
  69.  > SysGetKey(NOECHO)   
  70.  >  
  71.  > /* start timer */ 
  72.  > elapsd = time('e') 
  73.  > type fspec 
  74.  > elapsd = time('r') 
  75.  >  
  76.  > say 'Elapsed time for this run was:' elapsd 'seconds.' 
  77.  > exit 
  78.  
  79. ___
  80.  X KWQ/2 1.0C X Air conditioned environment - Do not open Windows.
  81.  
  82.